From: Serhiy Storchaka Date: Tue, 18 Oct 2016 10:27:54 +0000 (+0300) Subject: Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception X-Git-Tag: v3.7.0a1~2213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60c838b27c9c3dfcb8a198fc7067f9491c42935c;p=python Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here(). --- 60c838b27c9c3dfcb8a198fc7067f9491c42935c diff --cc Misc/NEWS index e0ec447487,5d972fdea8..f5a36f0f41 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,6 -10,38 +10,9 @@@ What's New in Python 3.7.0 alpha 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.