From: Antoine Pitrou Date: Wed, 27 Apr 2011 17:30:16 +0000 (+0200) Subject: Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* X-Git-Tag: v3.3.0a1~2484 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ea1c8d7d73aea2990adab20e144827f268eef89;p=thirdparty%2FPython%2Fcpython.git Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali. --- 9ea1c8d7d73aea2990adab20e144827f268eef89 diff --cc Misc/NEWS index 364e1f9b74a0,5b150e79c4aa..31cda4dda259 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,13 -10,10 +10,17 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- + - Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* + APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch + by Charles-François Natali. + +- Issue #10914: Initialize correctly the filesystem codec when creating a new + subinterpreter to fix a bootstrap issue with codecs implemented in Python, as + the ISO-8859-15 codec. + +- Issue #11918: OS/2 and VMS are no more supported because of the lack of + maintainer. + - Issue #6780: fix starts/endswith error message to mention that tuples are accepted too.