From 59cad72636dbbff40ea25fc13b39be0a3578f386 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Wed, 12 Jul 2017 22:09:00 +0500 Subject: [PATCH] Simplified GEOSCoordSeq._checkindex(). --- django/contrib/gis/geos/coordseq.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/contrib/gis/geos/coordseq.py b/django/contrib/gis/geos/coordseq.py index 28f69221db..6ea0fe9be3 100644 --- a/django/contrib/gis/geos/coordseq.py +++ b/django/contrib/gis/geos/coordseq.py @@ -66,8 +66,7 @@ class GEOSCoordSeq(GEOSBase): # #### Internal Routines #### def _checkindex(self, index): "Check the given index." - sz = self.size - if (sz < 1) or (index < 0) or (index >= sz): + if not (0 <= index < self.size): raise IndexError('invalid GEOS Geometry index: %s' % index) def _checkdim(self, dim):