summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-07-10 16:47:42 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-07-10 16:47:42 (GMT)
commit8318afa0b8d34da90ef683a63eb55b7e1b60ec9d (patch)
tree88822eacde2977830c801f7403158d20c532820e /Lib
parent1c6ebc22bc9e8c85a64aae14917846a3784255dd (diff)
downloadcpython-8318afa0b8d34da90ef683a63eb55b7e1b60ec9d.zip
cpython-8318afa0b8d34da90ef683a63eb55b7e1b60ec9d.tar.gz
cpython-8318afa0b8d34da90ef683a63eb55b7e1b60ec9d.tar.bz2
#6447: typo in subprocess docstring
Diffstat (limited to 'Lib')
-rw-r--r--Lib/subprocess.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py
index a5bb650..6b91f69 100644
--- a/Lib/subprocess.py
+++ b/Lib/subprocess.py
@@ -720,7 +720,7 @@ class Popen(object):
# Windows methods
#
def _get_handles(self, stdin, stdout, stderr):
- """Construct and return tupel with IO objects:
+ """Construct and return tuple with IO objects:
p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
"""
if stdin is None and stdout is None and stderr is None:
@@ -965,7 +965,7 @@ class Popen(object):
# POSIX methods
#
def _get_handles(self, stdin, stdout, stderr):
- """Construct and return tupel with IO objects:
+ """Construct and return tuple with IO objects:
p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
"""
p2cread, p2cwrite = None, None