[Python-checkins] cpython (merge 3.3 -> 3.4): Document the subprocess Popen.args attribute (issue21353)

gregory.p.smith python-checkins at python.org
Tue Apr 29 20:34:26 CEST 2014


http://hg.python.org/cpython/rev/182b869283a5
changeset:   90524:182b869283a5
branch:      3.4
parent:      90521:25919f35241e
parent:      90523:0a4b211b927e
user:        Gregory P. Smith <greg at krypto.org>
date:        Tue Apr 29 11:33:56 2014 -0700
summary:
  Document the subprocess Popen.args attribute (issue21353)

files:
  Doc/library/subprocess.rst |  6 ++++++
  1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -723,6 +723,12 @@
    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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list