Kaydet (Commit) 8318afa0 authored tarafından Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

#6447: typo in subprocess docstring

üst 1c6ebc22
...@@ -720,7 +720,7 @@ class Popen(object): ...@@ -720,7 +720,7 @@ class Popen(object):
# Windows methods # Windows methods
# #
def _get_handles(self, stdin, stdout, stderr): 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, c2pread, c2pwrite, errread, errwrite
""" """
if stdin is None and stdout is None and stderr is None: if stdin is None and stdout is None and stderr is None:
...@@ -965,7 +965,7 @@ class Popen(object): ...@@ -965,7 +965,7 @@ class Popen(object):
# POSIX methods # POSIX methods
# #
def _get_handles(self, stdin, stdout, stderr): 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, c2pread, c2pwrite, errread, errwrite
""" """
p2cread, p2cwrite = None, None p2cread, p2cwrite = None, None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment