From: Christian Heimes Date: Thu, 11 Jul 2013 09:23:34 +0000 (+0200) Subject: Issue #18426: Fix NULL pointer dereference in C extension import when X-Git-Tag: v3.4.0a1~265 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ec44649dfc2f5ec7daddcf33075b4b26b2e63d1;p=python Issue #18426: Fix NULL pointer dereference in C extension import when PyModule_GetDef() returns an error. --- 5ec44649dfc2f5ec7daddcf33075b4b26b2e63d1 diff --cc Misc/NEWS index ed579ef1f7,4d55853af7..96e51e38fb --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,13 -12,9 +10,16 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #18426: Fix NULL pointer dereference in C extension import when + PyModule_GetDef() returns an error. + +- Issue #17206: On Windows, increase the stack size from 2 MB to 4.2 MB to fix + a stack overflow in the marshal module (fix a crash in test_marshal). + Patch written by Jeremy Kloth. + +- Issue #3329: Implement the PEP 445: Add new APIs to customize Python memory + allocators. + - Issue #18328: Reorder ops in PyThreadState_Delete*() functions. Now the tstate is first removed from TLS and then deallocated.