From: Victor Stinner Date: Thu, 31 Mar 2011 11:40:14 +0000 (+0200) Subject: Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if X-Git-Tag: v3.3.0a1~2718 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd810ddb65870875e0312c04adcf2275ffbd0e17;p=python Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not called yet: detect bootstrap (startup) issues earlier. --- dd810ddb65870875e0312c04adcf2275ffbd0e17 diff --cc Misc/NEWS index fff54b8f7a,da09cc99b5..e9f0a59084 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -87,13 -49,11 +87,16 @@@ Core and Builtin Library ------- + - sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not + called yet: detect bootstrap (startup) issues earlier. + +- Issue #11393: Add the new faulthandler module. + - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. +- Removed the 'strict' argument to email.parser.Parser, which has been + deprecated since Python 2.4. + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments.