fixed __delattr__, thanks Vinicius
This commit is contained in:
@@ -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
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user