https://github.com/python/cpython/commit/0add1b682f1b8804e5eb236785d32d56b26e2548 commit: 0add1b682f1b8804e5eb236785d32d56b26e2548 branch: 3.13 author: Willy Bruns <[email protected]> committer: hugovk <[email protected]> date: 2026-08-28T07:53:26+03:00 summary:
[3.13] Fix typo in asyncio documentation (GH-148747) (#156494) Co-authored-by: ByteFlow <[email protected]> files: M Doc/library/asyncio-dev.rst diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 4a94cbe1d2e546..c6f2c2495b3849 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -302,7 +302,7 @@ generator can occur in an unexpected order:: try: yield 2 finally: - await asyncio.sleep(0.1) # immitate some async work + await asyncio.sleep(0.1) # imitate some async work work_done = True _______________________________________________ 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]
