diff options
author | Gregory P. Smith <greg@krypto.org> | 2016-11-21 00:35:30 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2016-11-21 00:35:30 (GMT) |
commit | a9ef715b399415a0007f6bdfd7d6a90590892c2d (patch) | |
tree | 76995a5b6896d7b4477b03126e9bf35d05915225 /Doc/library | |
parent | 82604e03dcdd1ada0d505bd732d7531dde948491 (diff) | |
download | cpython-a9ef715b399415a0007f6bdfd7d6a90590892c2d.zip cpython-a9ef715b399415a0007f6bdfd7d6a90590892c2d.tar.gz cpython-a9ef715b399415a0007f6bdfd7d6a90590892c2d.tar.bz2 |
issue 20572: remove the deprecation notice for the deleted endtime parameter.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/subprocess.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index ad2abe8..ea065b8 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -608,12 +608,6 @@ Instances of the :class:`Popen` class have the following methods: .. versionchanged:: 3.3 *timeout* was added. - .. deprecated:: 3.4 - - Do not use the *endtime* parameter. It is was unintentionally - exposed in 3.3 but was left undocumented as it was intended to be - private for internal use. Use *timeout* instead. - .. method:: Popen.communicate(input=None, timeout=None) Interact with process: Send data to stdin. Read data from stdout and stderr, |