Ticket #13488: 13488.diff
File 13488.diff, 607 bytes (added by , 14 years ago) |
---|
-
django/contrib/gis/geos/prototypes/io.py
105 105 106 106 def __del__(self): 107 107 # Cleaning up with the appropriate destructor. 108 if self._ptr: self._destructor(self._ptr) 108 try: 109 if self._ptr: self._destructor(self._ptr) 110 except TypeError: 111 # Thread is dying, rest in peace. 112 pass 109 113 110 114 ### Base WKB/WKT Reading and Writing objects ### 111 115