diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-12-29 03:01:53 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-12-29 03:01:53 (GMT) |
commit | a186ee22c0f30a136f56ae48fc8c56579045c05e (patch) | |
tree | c7e866369f87f7adaa3a51aca26e2b7d1f0a8f50 /Lib/subprocess.py | |
parent | 5dc29ac8885338ce8fd92f04d47c3d2caab0cd9d (diff) | |
download | cpython-a186ee22c0f30a136f56ae48fc8c56579045c05e.zip cpython-a186ee22c0f30a136f56ae48fc8c56579045c05e.tar.gz cpython-a186ee22c0f30a136f56ae48fc8c56579045c05e.tar.bz2 |
SF bug #1623890, fix argument name in docstring
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 5d79ea6..9816122 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -166,7 +166,7 @@ wait() communicate(input=None) Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to - terminate. The optional stdin argument should be a string to be + terminate. The optional input argument should be a string to be sent to the child process, or None, if no data should be sent to the child. |