summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-28 18:09:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-28 18:09:45 (GMT)
commit39a73a4cfaac3cdd9592840ee3f6007593609789 (patch)
treee1595661b4da810b8874a3e578f32abcc398611b /Misc/NEWS
parent31b798d3c8592c84d36c7c9134a0bcbcb39dd92e (diff)
parent11942a58a190a235f69e8fb193d08a4fca2bcf3c (diff)
downloadcpython-39a73a4cfaac3cdd9592840ee3f6007593609789.zip
cpython-39a73a4cfaac3cdd9592840ee3f6007593609789.tar.gz
cpython-39a73a4cfaac3cdd9592840ee3f6007593609789.tar.bz2
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).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ef9e13..14bf253 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ 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.