From e6749b6973de0d43b9ab8991d9a8895e0762cb65 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 11 Jun 2012 12:15:15 -0400 Subject: [PATCH] make sure integer is here. only the C ext doesn't try to call "key_fallback" for integer here, pure python one does. --- test/aaa_profiling/test_resultset.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 2fc335504f..bb16ea1240 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): -- 2.47.3