summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:30:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 10:30:48 (GMT)
commit2c16df269af5986e2eb79bda36dc8f0f34324a7e (patch)
tree071ad3f0c0cde46cbfcd1a28463ab87c101b0cbd /Misc
parentc2edcdd194356b26873e5304216c313e847b4159 (diff)
parent42d67af87fc2b1d297cce1cd8d762461e009f0a0 (diff)
downloadcpython-2c16df269af5986e2eb79bda36dc8f0f34324a7e.zip
cpython-2c16df269af5986e2eb79bda36dc8f0f34324a7e.tar.gz
cpython-2c16df269af5986e2eb79bda36dc8f0f34324a7e.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 38235b8..9cd20f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -132,6 +132,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 #13968: The glob module now supports recursive search in
subdirectories using the "**" pattern.