We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7d93f commit a25b270Copy full SHA for a25b270
Doc/howto/a-conceptual-overview-of-asyncio.rst
@@ -326,8 +326,9 @@ This behavior of ``await coroutine`` can trip a lot of people up!
326
That example highlights how using only ``await coroutine`` could
327
unintentionally hog control from other tasks and effectively stall the event
328
loop.
329
-:func:`asyncio.run` can help you detect such occurences with the ``debug=True``
330
-flag.
+:func:`asyncio.run` can help you detect such occurences via the
+``debug=True`` flag which accordingly enables
331
+:ref:`debug mode <asyncio-debug-mode>`.
332
Among other things, it will log any coroutines that monopolize execution for
333
100ms or longer.
334
0 commit comments