[Python-checkins] r73930 - python/trunk/Lib/subprocess.py
amaury.forgeotdarc
python-checkins at python.org
Fri Jul 10 18:47:42 CEST 2009
Author: amaury.forgeotdarc
Date: Fri Jul 10 18:47:42 2009
New Revision: 73930
Log:
#6447: typo in subprocess docstring
Modified:
python/trunk/Lib/subprocess.py
Modified: python/trunk/Lib/subprocess.py
==============================================================================
--- python/trunk/Lib/subprocess.py (original)
+++ python/trunk/Lib/subprocess.py Fri Jul 10 18:47:42 2009
@@ -720,7 +720,7 @@
# 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 @@
# 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
More information about the Python-checkins
mailing list