summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:27:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:27:19 (GMT)
commit0aa6562913cabefa050fb6f4ab7b1289cde45286 (patch)
treed5a22bfb7956d4e32dc23e014598642dd92111ea /Misc
parent17c01785ee12331fb8cf782ded90a5eaed0b88e1 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b0ac04..e5f8f76 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.