From 8c647cd73759601beba96e54720bf75b5d09ab19 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Sat, 4 Dec 2010 18:11:44 +0000 Subject: [PATCH] clarify the docs and new warning message. --- Doc/library/subprocess.rst | 2 +- Lib/subprocess.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index a346d98cf0..bb9bb28a8e 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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. diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 949c30a509..0b33157650 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -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) -- 2.40.0