1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #25661 -- Fixed checking number of points during list assignment for LinearRing.

This commit is contained in:
Sergey Fedoseev
2015-11-03 00:35:50 +05:00
committed by Claude Paroz
parent 0a26121797
commit 1b598b4b42
2 changed files with 33 additions and 1 deletions

View File

@@ -167,5 +167,5 @@ class LineString(ProjectInterpolateMixin, GEOSGeometry):
# LinearRings are LineStrings used within Polygons.
class LinearRing(LineString):
_minLength = 4
_minlength = 4
_init_func = capi.create_linearring