]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix duplicate word. (GH-92182)
authorBenjamin Peterson <benjamin@python.org>
Mon, 2 May 2022 19:43:52 +0000 (13:43 -0600)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 19:43:52 +0000 (13:43 -0600)
Doc/library/asyncio-runner.rst

index a526b459f74748c68274700c4fb066881e09a47c..d0df1db892f9ec7101b4d1fd7350bd5171cf1803 100644 (file)
@@ -139,7 +139,7 @@ To mitigate this issue, :mod:`asyncio` handles :const:`signal.SIGINT` as follows
    execution.
 3. When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, the custom signal handler
    cancels the main task by calling :meth:`asyncio.Task.cancel` which raises
-   :exc:`asyncio.CancelledError` inside the the main task.  This causes the Python stack
+   :exc:`asyncio.CancelledError` inside the main task.  This causes the Python stack
    to unwind, ``try/except`` and ``try/finally`` blocks can be used for resource
    cleanup.  After the main task is cancelled, :meth:`asyncio.Runner.run` raises
    :exc:`KeyboardInterrupt`.