From 024c5eecbc52e6335be1f312437a59d144c4728a Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Tue, 29 Apr 2014 11:33:23 -0700 Subject: [PATCH] Document the subprocess Popen.args attribute (issue21353) --- Doc/library/subprocess.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 347dcc3e50a..a9ee970ef87 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