From cc3cbe5ba8ec343a3269b265facba46576b228b7 Mon Sep 17 00:00:00 2001 From: Herrtian Date: Sat, 4 Apr 2026 10:18:48 +0200 Subject: [PATCH 1/2] Fix typo in asyncio event loop docs: 'signals' -> 'signal' The example section references the `signal` module, not `signals`. Closes #148067 --- Doc/library/asyncio-eventloop.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index d1a5b4e7b4638e..79c9516cda2d60 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -2055,7 +2055,7 @@ Wait until a file descriptor received some data using the Set signal handlers for SIGINT and SIGTERM ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -(This ``signals`` example only works on Unix.) +(This ``signal`` example only works on Unix.) Register handlers for signals :const:`~signal.SIGINT` and :const:`~signal.SIGTERM` using the :meth:`loop.add_signal_handler` method:: From 7eaff6f3591636f4c6bdda4f6378f7a6f3d75832 Mon Sep 17 00:00:00 2001 From: Herrtian Date: Sat, 4 Apr 2026 10:26:00 +0200 Subject: [PATCH 2/2] retrigger CLA check