diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-23 20:16:23 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-23 20:16:23 +0000 |
commit | f56d75c3ad9fbe7ff85b5b65698cd5696d12ee28 (patch) | |
tree | b9c6d4971418db4fdadf0412a6b6317cdc0f53d1 /test/tables.py | |
parent | 52e8a494b7fea6414dece965a3d240b1114e40a3 (diff) | |
download | sqlalchemy-f56d75c3ad9fbe7ff85b5b65698cd5696d12ee28.tar.gz |
Diffstat (limited to 'test/tables.py')
-rw-r--r-- | test/tables.py | 2 |
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)) |