Row.__str__
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.00.0 (2012-06-05 17:53:24) dev
|
||||
Version 2.00.0 (2012-06-05 18:00:56) dev
|
||||
|
||||
@@ -6038,6 +6038,10 @@ class Row(dict):
|
||||
def __setattr__(self, key, value):
|
||||
self[key] = value
|
||||
|
||||
def __str__(self):
|
||||
### this could be made smarter
|
||||
return '<Row ' + dict.__repr__(self) + '>'
|
||||
|
||||
def __repr__(self):
|
||||
return '<Row ' + dict.__repr__(self) + '>'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user