[Python-checkins] r87209 - python/branches/py3k/Misc/NEWS

gregory.p.smith python-checkins at python.org
Mon Dec 13 09:07:14 CET 2010


Author: gregory.p.smith
Date: Mon Dec 13 09:07:14 2010
New Revision: 87209

Log:
Mention the subprocess.Popen close_fds default change.  Fixup *s to -s.


Modified:
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Mon Dec 13 09:07:14 2010
@@ -11,13 +11,17 @@
 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?


More information about the Python-checkins mailing list