1
0
mirror of https://github.com/django/django.git synced 2025-10-30 17:16:10 +00:00

Fixed #28570 -- Dropped support for GEOS 3.3.x.

Removed setting SRID in GEOSGeometry.clone() which was only required
in GEOS 3.3.0.
This commit is contained in:
Sergey Fedoseev
2017-09-11 22:57:24 +05:00
committed by Tim Graham
parent 08654a99bb
commit bd903e8a6e
3 changed files with 4 additions and 3 deletions

View File

@@ -613,7 +613,7 @@ class GEOSGeometryBase(GEOSBase):
def clone(self):
"Clone this Geometry."
return GEOSGeometry(capi.geom_clone(self.ptr), srid=self.srid)
return GEOSGeometry(capi.geom_clone(self.ptr))
class LinearGeometryMixin: