]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-133515: fix docs for unawaited coroutines in debug mode (#134081)
authorKumar Aditya <kumaraditya@python.org>
Fri, 16 May 2025 15:31:15 +0000 (21:01 +0530)
committerGitHub <noreply@github.com>
Fri, 16 May 2025 15:31:15 +0000 (21:01 +0530)
Doc/library/asyncio-dev.rst

index 44b507a981111671a7b9067000a9049f579af32d..7831b613bd4a605c733f12c5f892fec3b51b900a 100644 (file)
@@ -46,10 +46,6 @@ In addition to enabling the debug mode, consider also:
 
 When the debug mode is enabled:
 
-* asyncio checks for :ref:`coroutines that were not awaited
-  <asyncio-coroutine-not-scheduled>` and logs them; this mitigates
-  the "forgotten await" pitfall.
-
 * Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` and
   :meth:`loop.call_at` methods) raise an exception if they are called
   from a wrong thread.