From: Serhiy Storchaka Date: Wed, 6 Aug 2014 14:51:58 +0000 (+0300) Subject: Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular X-Git-Tag: v3.5.0a1~1110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af78ef18241040a91e793bfc511a182d9e5d0bc2;p=thirdparty%2FPython%2Fcpython.git Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method. --- af78ef18241040a91e793bfc511a182d9e5d0bc2 diff --cc Misc/NEWS index 9dbeca9c3ddc,32c608f39dca..932e2399c4f4 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -112,25 -27,10 +112,29 @@@ Core and Builtin Library ------- + - Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular + when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the + __new__() method. + +- Issue #20170: Convert posixmodule to use Argument Clinic. + +- Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic + `mkdir -p` and `os.makedirs()` functionality. When true, ignore + FileExistsErrors. Patch by Berker Peksag. + +- Issue #22127: Bypass IDNA for pure-ASCII host names in the socket module + (in particular for numeric IPs). + +- Issue #21047: set the default value for the *convert_charrefs* argument + of HTMLParser to True. Patch by Berker Peksag. + +- Add an __all__ to html.entities. + +- Issue #15114: the strict mode and argument of HTMLParser, HTMLParser.error, + and the HTMLParserError exception have been removed. + +- Issue #22085: Dropped support of Tk 8.3 in Tkinter. + - Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. In particular this allows to initialize images from binary data.