From: Wang Ran (汪然) Date: Wed, 15 Jan 2025 12:24:31 +0000 (+0800) Subject: Fix typo in `Lib/asyncio/futures.py` (#128819) X-Git-Tag: v3.14.0a5~417 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a1056d394a489d229b26c06c7c79aa9c06696f6;p=thirdparty%2FPython%2Fcpython.git Fix typo in `Lib/asyncio/futures.py` (#128819) --- diff --git a/Lib/asyncio/futures.py b/Lib/asyncio/futures.py index c95fce035cd5..359b7a5e3f9e 100644 --- a/Lib/asyncio/futures.py +++ b/Lib/asyncio/futures.py @@ -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