From: Mark Dickinson Date: Sat, 13 Apr 2013 14:30:16 +0000 (+0100) Subject: Issue #16447: Merge fix from 3.3. X-Git-Tag: v3.4.0a1~967 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=548677bb8ce759395e2512420c03ccb184a77bf5;p=python Issue #16447: Merge fix from 3.3. --- 548677bb8ce759395e2512420c03ccb184a77bf5 diff --cc Misc/NEWS index eeeb9ccfd5,94a3ed32e9..4f42ff50b6 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,26 -12,16 +10,29 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #16447: Fixed potential segmentation fault when setting __name__ on a + class. + - Issue #17669: Fix crash involving finalization of generators using yield from. +- Issue #14439: Python now prints the traceback on runpy failure at startup. + +- Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() + when running on valgrind. + - Issue #17619: Make input() check for Ctrl-C correctly on Windows. +- Issue #17357: Add missing verbosity messages for -v/-vv that were lost during + the importlib transition. + - Issue #17610: Don't rely on non-standard behavior of the C qsort() function. -- Issue #17357: Add missing verbosity output when using -v/-vv. +- Issue #17323: The "[X refs, Y blocks]" printed by debug builds has been + disabled by default. It can be re-enabled with the `-X showrefcount` option. + +- Issue #17522: Add the PyGILState_Check() API. + +- Issue #17327: Add PyDict_SetDefault. Library -------