summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-04-29 18:33:56 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-04-29 18:33:56 (GMT)
commitd8ea56d26d019e132f543bbd3c7cacfb1e89099a (patch)
tree2806e3a398f7a429645bc37831865eebf22dafe0 /Doc/library/subprocess.rst
parent8fb74a35da34cf33704f30f97cf962905b2a643a (diff)
parent024c5eecbc52e6335be1f312437a59d144c4728a (diff)
downloadcpython-d8ea56d26d019e132f543bbd3c7cacfb1e89099a.zip
cpython-d8ea56d26d019e132f543bbd3c7cacfb1e89099a.tar.gz
cpython-d8ea56d26d019e132f543bbd3c7cacfb1e89099a.tar.bz2
Document the subprocess Popen.args attribute (issue21353)
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index cdcbe82..4b18396 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -723,6 +723,12 @@ The following attributes are also available:
deadlocks due to any of the other OS pipe buffers filling up and blocking the
child process.
+.. attribute:: Popen.args
+
+ The *args* argument as it was passed to :class:`Popen` -- a
+ sequence of program arguments or else a single string.
+
+ .. versionadded:: 3.3
.. attribute:: Popen.stdin