diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-23 12:30:59 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-23 12:30:59 +0200 |
commit | a5c896babbece4868dffd1e8e64ab88afe55b46f (patch) | |
tree | 35438398ad09a477613bc77a594c9860a32ec8ab /Doc/library/subprocess.rst | |
parent | c0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310 (diff) | |
parent | 1bd620bca594ba9193c63e79e7836765d23047cc (diff) | |
download | cpython-a5c896babbece4868dffd1e8e64ab88afe55b46f.tar.gz |
Issue #26729: Fixed __text_signature__ for sorted().
Patch by Erik Welch.
Diffstat (limited to 'Doc/library/subprocess.rst')
-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 ad2abe8245..ea065b897e 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, |