﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25728	description of `GEOSGeometry.contains` is incorrect	Sergey Fedoseev	Sergey Fedoseev	"Documentation says that `GEOSGeometry.contains`
{{{
Returns True if GEOSGeometry.within() is False.
}}}

this is incorrect:
{{{
In [23]: pol1 = GEOSGeometry('POLYGON((0 0, 0 4, 4 4, 4 0, 0 0))')

In [24]: pol2 = GEOSGeometry('POLYGON((6 6, 6 9, 9 9, 9 6, 6 6))')

In [25]: pol1.within(pol2)
Out[25]: False

In [26]: pol1.contains(pol2)
Out[26]: False
}}}
"	Bug	closed	Documentation	1.8	Normal	fixed			Ready for checkin	1	0	0	0	0	0
