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:
committed by
Tim Graham
parent
08654a99bb
commit
bd903e8a6e
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user