diff options
-rw-r--r-- | Doc/library/subprocess.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index cdcbe82..4b18396 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -723,6 +723,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 |