From: Antoine Pitrou Date: Sun, 3 Apr 2011 23:50:50 +0000 (+0200) Subject: Fix TraceCallbackTests to not use bound parameters (followup to issue #11688) X-Git-Tag: v3.3.0a1~2680^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4e181029fc4eb6ab94bf119b9cd2a80e7daf5cd;p=thirdparty%2FPython%2Fcpython.git Fix TraceCallbackTests to not use bound parameters (followup to issue #11688) --- diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index b889cd23941c..dad35d9674f0 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -213,7 +213,10 @@ class TraceCallbackTests(unittest.TestCase): traced_statements.append(statement) con.set_trace_callback(trace) con.execute("create table foo(x)") - con.execute("insert into foo(x) values (?)", (unicode_value,)) + # Can't execute bound parameters as their values don't appear + # in traced statements before SQLite 3.6.21 + # (cf. http://www.sqlite.org/draft/releaselog/3_6_21.html) + con.execute('insert into foo(x) values ("%s")' % unicode_value) con.commit() self.assertTrue(any(unicode_value in stmt for stmt in traced_statements), "Unicode data %s garbled in trace callback: %s"