]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
update call counts
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Feb 2010 18:59:21 +0000 (18:59 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 15 Feb 2010 18:59:21 +0000 (18:59 +0000)
test/aaa_profiling/test_orm.py

index 3027d4a50c428ed76c9effda25585f14b57f3c42..3d32bb0117aacdc7bc7e560d9330952c36cc46f1 100644 (file)
@@ -83,7 +83,8 @@ class MergeTest(_base.MappedTest):
 
         # preloading of collection took this down from 1728
         # to 1192 using sqlite3
-        @profiling.function_call_count(1192)
+        # the C extension took it back up to approx. 1257 (py2.6)
+        @profiling.function_call_count(1257, versions={'2.4':807})
         def go():
             p2 = sess2.merge(p1)
         go()