Row.__copy__, fixed issue 1255

This commit is contained in:
mdipierro
2013-01-08 09:10:34 -06:00
parent 88d2216780
commit 424ea22334
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.4.1-alpha.2+timestamp.2013.01.08.09.05.42
Version 2.4.1-alpha.2+timestamp.2013.01.08.09.09.49
+2
View File
@@ -6521,6 +6521,8 @@ class Row(object):
def __setitem__(self, key, value):
setattr(self, str(key), value)
__copy__ = lambda self: Row(self)
__call__ = __getitem__
def get(self,key,default=None):