summaryrefslogtreecommitdiff
path: root/test/tables.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2005-10-23 20:16:23 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2005-10-23 20:16:23 +0000
commitf56d75c3ad9fbe7ff85b5b65698cd5696d12ee28 (patch)
treeb9c6d4971418db4fdadf0412a6b6317cdc0f53d1 /test/tables.py
parent52e8a494b7fea6414dece965a3d240b1114e40a3 (diff)
downloadsqlalchemy-f56d75c3ad9fbe7ff85b5b65698cd5696d12ee28.tar.gz
Diffstat (limited to 'test/tables.py')
-rw-r--r--test/tables.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tables.py b/test/tables.py
index aceed904b..8bddce1d0 100644
--- a/test/tables.py
+++ b/test/tables.py
@@ -159,6 +159,8 @@ class Address(object):
return "Address: " + repr(getattr(self, 'address_id', None)) + " " + repr(getattr(self, 'user_id', None)) + " " + repr(self.email_address)
class Order(object):
+ def __init__(self):
+ self.isopen=0
def __repr__(self):
return "Order: " + repr(self.description) + " " + repr(self.isopen) + " " + repr(getattr(self, 'items', None))