summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-04-29 18:34:15 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-04-29 18:34:15 (GMT)
commit30a6df5b64928c47cb8e7c227ef4adeb30a7162f (patch)
tree68b936bf852e4c79a78521ea23fee94a2f996e1d /Doc/library/subprocess.rst
parent7c115f8aef80a0d86d511675b5449ddae1143ad9 (diff)
parentd8ea56d26d019e132f543bbd3c7cacfb1e89099a (diff)
downloadcpython-30a6df5b64928c47cb8e7c227ef4adeb30a7162f.zip
cpython-30a6df5b64928c47cb8e7c227ef4adeb30a7162f.tar.gz
cpython-30a6df5b64928c47cb8e7c227ef4adeb30a7162f.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 3043708..7efd4e7 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -724,6 +724,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