https://github.com/python/cpython/commit/22403d3a814ae2fd7e531479396959d639b98559 commit: 22403d3a814ae2fd7e531479396959d639b98559 branch: main author: Andrew Svetlov <andrew.svetlov at gmail.com> committer: asvetlov <andrew.svetlov at gmail.com> date: 2022年03月15日T15:22:26+02:00 summary: Drop accidentally added whitespaces in asyncio internals (GH-31900) files: M Lib/asyncio/selector_events.py diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index bfd8019da606e..33ebc4b27808c 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -485,7 +485,7 @@ async def sock_recvfrom_into(self, sock, buf, nbytes=0): raise ValueError("the socket must be non-blocking") if not nbytes: nbytes = len(buf) - + try: return sock.recvfrom_into(buf, nbytes) except (BlockingIOError, InterruptedError):