summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-02-11 17:21:03 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-02-11 17:21:03 (GMT)
commitbbe3335f65b20695698137ecbf08619ca1c94697 (patch)
treed7cd71aed776843a01a4979f902e8a21bff484db /Doc/library/subprocess.rst
parent2371e2551770572a219cf7a8f75fff09c9035157 (diff)
downloadcpython-bbe3335f65b20695698137ecbf08619ca1c94697.zip
cpython-bbe3335f65b20695698137ecbf08619ca1c94697.tar.gz
cpython-bbe3335f65b20695698137ecbf08619ca1c94697.tar.bz2
Deprecate Popen.wait()'s undocumented endtime parameter. issue20572.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 95a85ce..1a9dd9d 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -639,6 +639,11 @@ Instances of the :class:`Popen` class have the following methods:
.. versionchanged:: 3.3
*timeout* was added.
+ .. deprecated:: 3.4
+
+ Do not use the undocumented *endtime* parameter. It is was
+ unintentionally exposed in 3.3 but was intended to be private
+ for internal use. Use *timeout* instead.
.. method:: Popen.communicate(input=None, timeout=None)