diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 10:27:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 10:27:19 (GMT) |
commit | 0aa6562913cabefa050fb6f4ab7b1289cde45286 (patch) | |
tree | d5a22bfb7956d4e32dc23e014598642dd92111ea /Misc | |
parent | 17c01785ee12331fb8cf782ded90a5eaed0b88e1 (diff) | |
download | cpython-0aa6562913cabefa050fb6f4ab7b1289cde45286.zip cpython-0aa6562913cabefa050fb6f4ab7b1289cde45286.tar.gz cpython-0aa6562913cabefa050fb6f4ab7b1289cde45286.tar.bz2 |
Issue #21147: sqlite3 now raises an exception if the request contains a null
character instead of truncate it. Based on patch by Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,9 @@ Core and Builtins Library ------- +- Issue #21147: sqlite3 now raises an exception if the request contains a null + character instead of truncate it. Based on patch by Victor Stinner. + - Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with empty string or tuple argument. |