[Python-checkins] Fix duplicate word. (GH-92182)

benjaminp webhook-mailer at python.org
Mon May 2 15:43:57 EDT 2022


https://github.com/python/cpython/commit/dd57fe1dd7675c53e69af33b511786127ae8d25c
commit: dd57fe1dd7675c53e69af33b511786127ae8d25c
branch: main
author: Benjamin Peterson <benjamin at python.org>
committer: benjaminp <benjamin at locrian.net>
date: 2022-05-02T13:43:52-06:00
summary:

Fix duplicate word. (GH-92182)

files:
M Doc/library/asyncio-runner.rst

diff --git a/Doc/library/asyncio-runner.rst b/Doc/library/asyncio-runner.rst
index a526b459f7474..d0df1db892f9e 100644
--- a/Doc/library/asyncio-runner.rst
+++ b/Doc/library/asyncio-runner.rst
@@ -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`.



More information about the Python-checkins mailing list