summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-12-13 08:07:14 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-12-13 08:07:14 (GMT)
commitf86aa7c3d22ace890e295c9bdf58ebfae90b13f1 (patch)
treeff1f9e74effedbef34b0369fba1b1bc835b6df63
parent138fa430e958d011862d406ccb1061fe7f0c6baa (diff)
downloadcpython-f86aa7c3d22ace890e295c9bdf58ebfae90b13f1.zip
cpython-f86aa7c3d22ace890e295c9bdf58ebfae90b13f1.tar.gz
cpython-f86aa7c3d22ace890e295c9bdf58ebfae90b13f1.tar.bz2
Mention the subprocess.Popen close_fds default change. Fixup *s to -s.
-rw-r--r--Misc/NEWS8
1 files changed, 6 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index af34fe5..88805a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,13 +11,17 @@ What's New in Python 3.2 Beta 2?
Library
-------
-* Issue #10188 (partial resolution): tempfile.TemporaryDirectory emits
+- Issue #10188 (partial resolution): tempfile.TemporaryDirectory emits
a warning on sys.stderr rather than throwing a misleading exception
if cleanup fails due to nulling out of modules during shutdown.
Also avoids an AttributeError when mkdtemp call fails and issues
a ResourceWarning on implicit cleanup via __del__.
-* Issue #10107: Warn about unsaved files in IDLE on OSX.
+- Issue #10107: Warn about unsaved files in IDLE on OSX.
+
+- Issue #7213: subprocess.Popen's default for close_fds has been changed.
+ It is now platform specific, keeping its default of False on Windows and
+ changing the default to True on POSIX and other platforms.
What's New in Python 3.2 Beta 1?