From: Andrew Svetlov Date: Tue, 15 Mar 2022 13:22:26 +0000 (+0200) Subject: Drop accidentally added whitespaces in asyncio internals (GH-31900) X-Git-Tag: v3.11.0a7~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22403d3a814ae2fd7e531479396959d639b98559;p=thirdparty%2FPython%2Fcpython.git Drop accidentally added whitespaces in asyncio internals (GH-31900) --- diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index bfd8019da606..33ebc4b27808 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):