]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Drop accidentally added whitespaces in asyncio internals (GH-31900)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Tue, 15 Mar 2022 13:22:26 +0000 (15:22 +0200)
committerGitHub <noreply@github.com>
Tue, 15 Mar 2022 13:22:26 +0000 (15:22 +0200)
Lib/asyncio/selector_events.py

index bfd8019da606e57ad5b9de81ac39fafb41c989c6..33ebc4b27808cee4bf964a5ee22800238ee10227 100644 (file)
@@ -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):