]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] Refer to `TimeoutError` instead of `asyncio.TimeoutError` in `asyncio-task...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 28 Jun 2023 05:38:26 +0000 (22:38 -0700)
committerGitHub <noreply@github.com>
Wed, 28 Jun 2023 05:38:26 +0000 (23:38 -0600)
Co-authored-by: lightdrk <108566237+lightdrk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Doc/library/asyncio-task.rst

index 550a84ebae39ee542b516638fe2a56f5f8dac3bc..ad5466b12b651e71c634aaa3b1f9e474d5e22f08 100644 (file)
@@ -601,16 +601,16 @@ Timeouts
     If ``long_running_task`` takes more than 10 seconds to complete,
     the context manager will cancel the current task and handle
     the resulting :exc:`asyncio.CancelledError` internally, transforming it
-    into an :exc:`asyncio.TimeoutError` which can be caught and handled.
+    into a :exc:`TimeoutError` which can be caught and handled.
 
     .. note::
 
       The :func:`asyncio.timeout` context manager is what transforms
-      the :exc:`asyncio.CancelledError` into an :exc:`asyncio.TimeoutError`,
-      which means the :exc:`asyncio.TimeoutError` can only be caught
+      the :exc:`asyncio.CancelledError` into a :exc:`TimeoutError`,
+      which means the :exc:`TimeoutError` can only be caught
       *outside* of the context manager.
 
-    Example of catching :exc:`asyncio.TimeoutError`::
+    Example of catching :exc:`TimeoutError`::
 
         async def main():
             try: