mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
#6447: typo in subprocess docstring
This commit is contained in:
parent
1c6ebc22bc
commit
8318afa0b8
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue