diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-11 12:15:15 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-11 12:15:15 -0400 |
commit | e6749b6973de0d43b9ab8991d9a8895e0762cb65 (patch) | |
tree | 3abe5e191d57a404abc66c9ccdb4027a56e6a173 | |
parent | 5b8e5d381c710b0d813022467acc56265e98a27d (diff) | |
download | sqlalchemy-e6749b6973de0d43b9ab8991d9a8895e0762cb65.tar.gz |
make sure integer is here. only the C ext doesn't try to call "key_fallback" for integer here,
pure python one does.
-rw-r--r-- | test/aaa_profiling/test_resultset.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 2fc335504..bb16ea124 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -109,6 +109,7 @@ class RowProxyTest(fixtures.TestBase): enumerate(zip(keys, processors, row)): for key in keyobjs: keymap[key] = (processor, key, index) + keymap[index] = (processor, key, index) return RowProxy(metadata, row, processors, keymap) def _test_getitem_value_refcounts(self, seq_factory): |