summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-04-29 18:33:23 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-04-29 18:33:23 (GMT)
commit024c5eecbc52e6335be1f312437a59d144c4728a (patch)
tree4f93dc86044d092d03b6b4347f9488c7f3410a63 /Doc
parent98816bd234ec228ce70c9ccc47936cb28b2c6aac (diff)
downloadcpython-024c5eecbc52e6335be1f312437a59d144c4728a.zip
cpython-024c5eecbc52e6335be1f312437a59d144c4728a.tar.gz
cpython-024c5eecbc52e6335be1f312437a59d144c4728a.tar.bz2
Document the subprocess Popen.args attribute (issue21353)
Diffstat (limited to 'Doc')
-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 347dcc3..a9ee970 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -702,6 +702,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