mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
This commit is contained in:
parent
8abac348a9
commit
b0b0e628ee
13 changed files with 18 additions and 19 deletions
|
@ -1,4 +1,4 @@
|
|||
"""Selector eventloop for Unix with signal handling."""
|
||||
"""Selector event loop for Unix with signal handling."""
|
||||
|
||||
import errno
|
||||
import fcntl
|
||||
|
@ -244,7 +244,7 @@ def _set_nonblocking(fd):
|
|||
|
||||
class _UnixReadPipeTransport(transports.ReadTransport):
|
||||
|
||||
max_size = 256 * 1024 # max bytes we read in one eventloop iteration
|
||||
max_size = 256 * 1024 # max bytes we read in one event loop iteration
|
||||
|
||||
def __init__(self, loop, pipe, protocol, waiter=None, extra=None):
|
||||
super().__init__(extra)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue