https://github.com/python/cpython/commit/1a1056d394a489d229b26c06c7c79aa9c06696f6
commit: 1a1056d394a489d229b26c06c7c79aa9c06696f6
branch: main
author: Wang Ran (汪然) <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2025-01-15T17:54:31+05:30
summary:

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

files:
M Lib/asyncio/futures.py

diff --git a/Lib/asyncio/futures.py b/Lib/asyncio/futures.py
index c95fce035cd548..359b7a5e3f9eea 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
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to