summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-12-29 03:01:06 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-12-29 03:01:06 (GMT)
commite38ecee5c3c6ea0f0eba2dfe49c110279626b5e0 (patch)
treee8dee46ff1a669f7eda81603bf929c248b7ba390
parent0c40ca6eb8f7331e7060f60a1db639e38e4d0403 (diff)
downloadcpython-e38ecee5c3c6ea0f0eba2dfe49c110279626b5e0.zip
cpython-e38ecee5c3c6ea0f0eba2dfe49c110279626b5e0.tar.gz
cpython-e38ecee5c3c6ea0f0eba2dfe49c110279626b5e0.tar.bz2
SF bug #1623890, fix argument name in docstring
-rw-r--r--Lib/subprocess.py2
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.