From: Serhiy Storchaka Date: Tue, 18 Oct 2016 10:26:25 +0000 (+0300) Subject: Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception X-Git-Tag: v3.6.0b3~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df0fd74ae8fa204aab51c35e10870fd99101e99c;p=python Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here(). --- df0fd74ae8fa204aab51c35e10870fd99101e99c diff --cc Misc/NEWS index 2b0397bf7d,2d50cf6ad5..5d972fdea8 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,40 -10,9 +10,43 @@@ What's New in Python 3.6.0 beta Core and Builtins ----------------- + - Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception + loss in PyTraceBack_Here(). + +Library +------- + +- Issue #24452: Make webbrowser support Chrome on Mac OS X. + +- Issue #20766: Fix references leaked by pdb in the handling of SIGINT + handlers. + +Build +----- + +- Issue #28208: Update Windows build to use SQLite 3.14.2.0. + +- Issue #28248: Update Windows build to use OpenSSL 1.0.2j. + +Tests +----- + +- Issue #28409: regrtest: fix the parser of command line arguments. + + +What's New in Python 3.6.0 beta 2 +================================= + +*Release date: 2016-10-10* + +Core and Builtins +----------------- + +- Issue #28183: Optimize and cleanup dict iteration. + +- Issue #26081: Added C implementation of asyncio.Future. + Original patch by Yury Selivanov. + - Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). Patch by Xiang Zhang.