]> granicus.if.org Git - python/commitdiff
clarify the docs and new warning message.
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 4 Dec 2010 18:11:44 +0000 (18:11 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 4 Dec 2010 18:11:44 +0000 (18:11 +0000)
Doc/library/subprocess.rst
Lib/subprocess.py

index a346d98cf0d037f3d9b36255c05a230db9c76fc6..bb9bb28a8e0f768e3f5ee90afc88cfa181798eb4 100644 (file)
@@ -160,7 +160,7 @@ This module defines one class called :class:`Popen`:
 
 .. versionchanged:: 3.2
    Callers should always specify a *close_fds* to avoid a DeprecationWarning.
-   The default value for this argument will be changing in Python 3.3.
+   The default behavior of this argument will be changing in Python 3.3.
 
    If *shell* is :const:`True`, the specified command will be executed through the
    shell.
index 949c30a50958719f5ff9f9e4dd4d2640e907fcab..0b3315765090c5a9d16b596b28c63c14f4c16052 100644 (file)
@@ -623,8 +623,8 @@ class Popen(object):
             # Notification for http://bugs.python.org/issue7213 & issue2320
             warnings.warn(
                     'The close_fds parameter was not specified.  Its default'
-                    ' will change from False to True in a future Python'
-                    ' version.  Most users should set it to True.  Please'
+                    ' behavior will change in a future Python version. '
+                    ' Most users should set it to True.  Please'
                     ' update your code explicitly set close_fds.',
                     DeprecationWarning)