fixed __delattr__, thanks Vinicius

This commit is contained in:
mdipierro
2013-06-24 01:48:48 -05:00
parent b980d32d02
commit b5056b04f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.5.1-stable+timestamp.2013.06.23.08.50.58
Version 2.5.1-stable+timestamp.2013.06.24.01.48.00
+1 -1
View File
@@ -6863,7 +6863,7 @@ class Row(object):
def __setitem__(self, key, value):
setattr(self, str(key), value)
__delitem__ = delattr
__delitem__ = object.__delattr__
__copy__ = lambda self: Row(self)