diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-04 18:11:44 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-04 18:11:44 (GMT) |
commit | 8c647cd73759601beba96e54720bf75b5d09ab19 (patch) | |
tree | 238fb38c5ea2e0fa60d86f84955b33acbbd60694 /Lib/subprocess.py | |
parent | 2f0fd0fa4fd0424cee5718bccc826c2ed7220bb2 (diff) | |
download | cpython-8c647cd73759601beba96e54720bf75b5d09ab19.zip cpython-8c647cd73759601beba96e54720bf75b5d09ab19.tar.gz cpython-8c647cd73759601beba96e54720bf75b5d09ab19.tar.bz2 |
clarify the docs and new warning message.
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 949c30a..0b33157 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) |