summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:29:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:29:05 (GMT)
commit42d67af87fc2b1d297cce1cd8d762461e009f0a0 (patch)
treee9ad2265f9dc6bd1f5aee05f8bc64b0d45a4d3fd /Misc
parentabf68ce16474a2d252723099f1c7a6d640191123 (diff)
downloadcpython-42d67af87fc2b1d297cce1cd8d762461e009f0a0.zip
cpython-42d67af87fc2b1d297cce1cd8d762461e009f0a0.tar.gz
cpython-42d67af87fc2b1d297cce1cd8d762461e009f0a0.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 dddcf76..4e72496 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,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.