From: Serhiy Storchaka Date: Thu, 11 Sep 2014 10:30:48 +0000 (+0300) Subject: Issue #21147: sqlite3 now raises an exception if the request contains a null X-Git-Tag: v3.5.0a1~931 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c16df269af5986e2eb79bda36dc8f0f34324a7e;p=python Issue #21147: sqlite3 now raises an exception if the request contains a null character instead of truncate it. Based on patch by Victor Stinner. --- 2c16df269af5986e2eb79bda36dc8f0f34324a7e diff --cc Misc/NEWS index 38235b823c,4e72496f8a..9cd20f7242 --- a/Misc/NEWS +++ 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.