Fix typo in Lib/asyncio/futures.py (#128819)

This commit is contained in:
Wang Ran (汪然) 2025-01-15 20:24:31 +08:00 committed by GitHub
parent ae7f621c33
commit 1a1056d394
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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