summaryrefslogtreecommitdiff
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
commit024c5eecbc52e6335be1f312437a59d144c4728a (patch)
tree4f93dc86044d092d03b6b4347f9488c7f3410a63
parent98816bd234ec228ce70c9ccc47936cb28b2c6aac (diff)
downloadcpython-git-024c5eecbc52e6335be1f312437a59d144c4728a.tar.gz
Document the subprocess Popen.args attribute (issue21353)
-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