]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in `Lib/asyncio/futures.py` (#128819)
authorWang Ran (汪然) <wangr@smail.nju.edu.cn>
Wed, 15 Jan 2025 12:24:31 +0000 (20:24 +0800)
committerGitHub <noreply@github.com>
Wed, 15 Jan 2025 12:24:31 +0000 (17:54 +0530)
Lib/asyncio/futures.py

index c95fce035cd548d6fabf6f37ea0fb8aaa743001c..359b7a5e3f9eea0ff34af62f3a66b21b8d5ba2e0 100644 (file)
@@ -62,7 +62,7 @@ class Future:
     #   that it is not compatible by setting this to None.
     # - It is set by __iter__() below so that Task.__step() can tell
     #   the difference between
-    #   `await Future()` or`yield from Future()` (correct) vs.
+    #   `await Future()` or `yield from Future()` (correct) vs.
     #   `yield Future()` (incorrect).
     _asyncio_future_blocking = False