From: Antoine Pitrou Date: Mon, 28 Nov 2011 18:09:45 +0000 (+0100) Subject: Issue #7111: Python can now be run without a stdin, stdout or stderr stream. X-Git-Tag: v3.3.0a1~718 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39a73a4cfaac3cdd9592840ee3f6007593609789;p=thirdparty%2FPython%2Fcpython.git Issue #7111: Python can now be run without a stdin, stdout or stderr stream. It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object). --- 39a73a4cfaac3cdd9592840ee3f6007593609789 diff --cc Misc/NEWS index 8ef9e13bdf2c,f79e57ac189a..14bf253d7d3b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,16 -10,10 +10,20 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- + - Issue #7111: Python can now be run without a stdin, stdout or stderr + stream. It was already the case with Python 2. However, the corresponding + sys module entries are now set to None (instead of an unusable file object). + +- Issue #11849: Ensure that free()d memory arenas are really released + on POSIX systems supporting anonymous memory mappings. Patch by + Charles-François Natali. + +- Issue #13452: PyUnicode_EncodeDecimal() doesn't support error handlers + different than "strict" anymore. The caller was unable to compute the + size of the output buffer: it depends on the error handler. + +- PEP 3155 / issue #13448: Qualified name for classes and functions. + - Issue #13436: Fix a bogus error message when an AST object was passed an invalid integer value.