summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2022-03-15 13:22:26 (GMT)
committerGitHub <noreply@github.com>2022-03-15 13:22:26 (GMT)
commit22403d3a814ae2fd7e531479396959d639b98559 (patch)
tree7cc3231806e3f0ded7f5f68a02f0ee8914c36c1c /Lib/asyncio
parent2cf7f865f099db11cc6903b334d9c376610313e8 (diff)
downloadcpython-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.py2
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):