From: Serhiy Storchaka Date: Tue, 25 Oct 2016 07:17:33 +0000 (+0300) Subject: Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build. X-Git-Tag: v3.6.0b3~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4a3e90aa8903d35a7b07e751a878fbd8326799e;p=python Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build. --- c4a3e90aa8903d35a7b07e751a878fbd8326799e diff --cc Misc/NEWS index e5d77af5f4,ff6025c479..563f0c0a46 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -10,9 +10,15 @@@ What's New in Python 3.6.0 beta Core and Builtins ----------------- + - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug + build. + +- Issue #28517: Fixed of-by-one error in the peephole optimizer that caused + keeping unreachable code. + +- Issue #28214: Improved exception reporting for problematic __set_name__ + attributes. + - Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception loss in PyTraceBack_Here().