mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Merge
This commit is contained in:
commit
58f41c27bc
1 changed files with 4 additions and 1 deletions
|
|
@ -213,7 +213,10 @@ def trace(statement):
|
|||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue