summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-01-20 17:48:43 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2010-01-20 17:48:43 +0000
commitc3702fa5169fef29ca13427abea2f6d41449c658 (patch)
treecf6fdf3ea8d1ab8d75189aa552c7d7b1566766fb /test/sql/test_query.py
parent81372486d9a10305f47f76c4455a5e6df02e586c (diff)
downloadsqlalchemy-c3702fa5169fef29ca13427abea2f6d41449c658.tar.gz
moved the metadata step of ResultProxy into a ResultMetaData object. this also replaces PickledResultProxy.
Allows RowProxy objects to reference just the metadata they need and provides the "core" of ResultProxy detached from the object itself, allowing ResultProxy implementations to vary more easily. will also enable [ticket:1635]
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index c711819f9..953dcab7f 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -717,7 +717,6 @@ class QueryTest(TestBase):
self.fail('Should not allow access to private attributes')
except AttributeError:
pass # expected
- r.close()
finally:
shadowed.drop(checkfirst=True)