execute_python is now safe + test

This commit is contained in:
Clement Rouault
2015-12-22 16:17:30 +01:00
parent dea58c8c77
commit 5a29c59b3e
7 changed files with 136 additions and 16 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ def fixedpropety(f):
except AttributeError:
setattr(self, cache_name, f(self))
return getattr(self, cache_name)
return property(prop)
return property(prop, doc=f.__doc__)
def swallow_ctypes_copy(ctypes_object):