[GRASS-SVN] r64426 - grass/trunk/lib/python/script

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Feb 3 07:20:48 PST 2015


Author: glynn
Date: 2015-02-03 07:20:48 -0800 (Tue, 03 Feb 2015)
New Revision: 64426

Modified:
   grass/trunk/lib/python/script/array.py
Log:
numpy.memmap() no longer has _close; use __del__ instead


Modified: grass/trunk/lib/python/script/array.py
===================================================================
--- grass/trunk/lib/python/script/array.py	2015-02-03 15:01:35 UTC (rev 64425)
+++ grass/trunk/lib/python/script/array.py	2015-02-03 15:20:48 UTC (rev 64426)
@@ -150,8 +150,7 @@
         self.filename = filename
         return self
 
-    def _close(self):
-        numpy.memmap._close(self)
+    def __del__(self):
         if isinstance(self, array):
             try_remove(self.filename)
 
@@ -273,10 +272,8 @@
 
         return self
 
-    def _close(self):
-
-        numpy.memmap._close(self)
-        if isinstance(self, array):
+    def __del__(self):
+        if isinstance(self, array3d):
             try_remove(self.filename)
 
     def read(self, mapname, null=None):



More information about the grass-commit mailing list