# bigger operation so using a small variance
@profiling.function_call_count(97, variance=0.001,
- versions={'2.4': 67, '3': 96})
+ versions={'2.4': 73, '3': 96})
def go():
return sess2.merge(p1, load=False)
p2 = go()
use_threadlocal=True)
- @profiling.function_call_count(72, {'2.4': 42, '2.7':67,
+ @profiling.function_call_count(72, {'2.4': 63, '2.7':67,
'2.7+cextension':67,
'3.0':65, '3.1':65},
variance=.10)
# sqlite3 returns native unicode. so shouldn't be an increase here.
@profiling.function_call_count(14396, versions={'2.4': 13214,
- '2.6+cextension': 409, '2.7+cextension':409})
+ '2.6+cextension': 409,
+ '2.7+cextension':409})
def test_unicode(self):
[tuple(row) for row in t2.select().execute().fetchall()]
# ensure initial connect activities complete
c.execute("select 1")
- @profiling.function_call_count(36, variance=.01)
+ @profiling.function_call_count(36, versions={'2.6':35, '2.5':35,
+ '2.4':21},
+ variance=.01)
def go():
c.execute("select 1")
go()
# ensure initial connect activities complete
e.execute("select 1")
- @profiling.function_call_count(59, variance=.01)
+ @profiling.function_call_count(59, versions={'2.4':41, '2.5':58,
+ '2.6':58},
+ variance=.01)
def go():
e.execute("select 1")
go()