Django

Code

Show
Ignore:
Timestamp:
07/21/08 21:43:47 (5 months ago)
Author:
jbronn
Message:

gis: Fixed #7873, GEOSGeometry equivalence comparison with None should not raise an exception. Thanks, Denis.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis/django/contrib/gis/geos/base.py

    r7404 r8040  
    167167        if isinstance(other, basestring): 
    168168            return self.wkt == other 
    169         else
     169        elif isinstance(other, GEOSGeometry)
    170170            return self.equals_exact(other) 
     171        else: 
     172            return False 
    171173 
    172174    def __ne__(self, other):