summaryrefslogtreecommitdiff
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-04-29 11:33:23 -0700
committerGregory P. Smith <greg@krypto.org>2014-04-29 11:33:23 -0700
commit6b606594a48ff54464cb84e96e7ecdc217a54a03 (patch)
tree0c71ea5c30913cb792faa71164957284610f5701 /Doc/library/subprocess.rst
parent009164f485348280afb82a287f0970473fbd4d9f (diff)
downloadcpython-6b606594a48ff54464cb84e96e7ecdc217a54a03.tar.gz
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 347dcc3e50..a9ee970ef8 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