diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2011-11-08 11:39:07 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2011-11-08 11:39:07 (GMT) |
commit | 69ce0d86029041ffd04438a321248cfa8158b9a8 (patch) | |
tree | cf75c24c676d00b8e8cf316e083517ab5db08446 /Doc/library | |
parent | c29248f2324188a192d11a0e8adf9e146b326bd4 (diff) | |
download | cpython-69ce0d86029041ffd04438a321248cfa8158b9a8.zip cpython-69ce0d86029041ffd04438a321248cfa8158b9a8.tar.gz cpython-69ce0d86029041ffd04438a321248cfa8158b9a8.tar.bz2 |
Issue #13237: Remove duplicate data value descriptions from the subprocess docs
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/subprocess.rst | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index afa7adc..311dfd2 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -437,20 +437,6 @@ functions. Added context manager support. -.. data:: PIPE - - Special value that can be used as the *stdin*, *stdout* or *stderr* argument - to :class:`Popen` and indicates that a pipe to the standard stream should be - opened. - - -.. data:: STDOUT - - Special value that can be used as the *stderr* argument to :class:`Popen` and - indicates that standard error should go into the same handle as standard - output. - - Exceptions ^^^^^^^^^^ |