diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2022-03-15 13:22:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 13:22:26 (GMT) |
commit | 22403d3a814ae2fd7e531479396959d639b98559 (patch) | |
tree | 7cc3231806e3f0ded7f5f68a02f0ee8914c36c1c /Lib/asyncio | |
parent | 2cf7f865f099db11cc6903b334d9c376610313e8 (diff) | |
download | cpython-22403d3a814ae2fd7e531479396959d639b98559.zip cpython-22403d3a814ae2fd7e531479396959d639b98559.tar.gz cpython-22403d3a814ae2fd7e531479396959d639b98559.tar.bz2 |
Drop accidentally added whitespaces in asyncio internals (GH-31900)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/selector_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index bfd8019..33ebc4b 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -485,7 +485,7 @@ class BaseSelectorEventLoop(base_events.BaseEventLoop): raise ValueError("the socket must be non-blocking") if not nbytes: nbytes = len(buf) - + try: return sock.recvfrom_into(buf, nbytes) except (BlockingIOError, InterruptedError): |