]> granicus.if.org Git - python/commitdiff
#6447: typo in subprocess docstring
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Fri, 10 Jul 2009 16:47:42 +0000 (16:47 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Fri, 10 Jul 2009 16:47:42 +0000 (16:47 +0000)
Lib/subprocess.py

index a5bb65065a6942bea50b3a6b02274ee24cc60ed5..6b91f69f8caff379a2454f9c8406d27c1b060a00 100644 (file)
@@ -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