]> granicus.if.org Git - python/commitdiff
Issue #21147: sqlite3 now raises an exception if the request contains a null
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 11 Sep 2014 10:30:48 +0000 (13:30 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 11 Sep 2014 10:30:48 +0000 (13:30 +0300)
character instead of truncate it.  Based on patch by Victor Stinner.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 38235b823c76027ff4b7ced274151c1b71274b49,4e72496f8a4a5f17a71b89daf72345d2ed79f4a8..9cd20f72428bba5964fea669fd4f0dde935ff8aa
+++ b/Misc/NEWS
@@@ -132,9 -32,9 +132,12 @@@ Core and Builtin
  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.
 +
  - Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with
    empty string or tuple argument.