diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2011-04-04 00:14:25 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2011-04-04 00:14:25 (GMT) |
commit | 58f41c27bc16b733db8508415269253dd50fa139 (patch) | |
tree | 19819c4ea691180ccdc8117f05b6061d6d7205ec | |
parent | 7c8ea37d9bc66db3e6ea0b6a90c3f8b3deafaac1 (diff) | |
parent | f4e181029fc4eb6ab94bf119b9cd2a80e7daf5cd (diff) | |
download | cpython-58f41c27bc16b733db8508415269253dd50fa139.zip cpython-58f41c27bc16b733db8508415269253dd50fa139.tar.gz cpython-58f41c27bc16b733db8508415269253dd50fa139.tar.bz2 |
Merge
-rw-r--r-- | Lib/sqlite3/test/hooks.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index b889cd2..dad35d9 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" |