From 7c6bde1c15c97cae34ef9449aa595168910fe87d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 25 Oct 2012 12:07:38 -0400 Subject: The long-deprecated and non-functional ``assert_unicode`` flag on :func:`.create_engine` as well as :class:`.String` is removed. --- test/perf/stress_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/perf') diff --git a/test/perf/stress_all.py b/test/perf/stress_all.py index b5d210eef..d17028530 100644 --- a/test/perf/stress_all.py +++ b/test/perf/stress_all.py @@ -129,7 +129,7 @@ typedecoratortest = (MyIntType, genmyintvalue, # Unicode def genunicodevalue(rnum, fnum): return (rnum % 4) and (u"value%d" % fnum) or None -unicodetest = (Unicode(20, assert_unicode=False), genunicodevalue, +unicodetest = (Unicode(20, ), genunicodevalue, dict(num_records=100000)) # dict(engineurl='mysql:///test', freshdata=False)) @@ -159,7 +159,7 @@ if test_methods: for engineurl in ('postgresql://scott:tiger@localhost/test', 'sqlite://', 'mysql://scott:tiger@localhost/test'): print "\n%s\n" % engineurl - test_table = prepare(Unicode(20, assert_unicode=False), + test_table = prepare(Unicode(20,), genunicodevalue, num_fields=10, num_records=100000, verbose=verbose, engineurl=engineurl) -- cgit v1.2.1