From c7b7f12b8609f932a23a9bc96a5de7cd9ecd5723 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Sat, 30 Apr 2022 06:23:54 +0100 Subject: gh-91880 - fix typo (GH-92069) https://github.com/python/cpython/issues/91880#issuecomment-1113914241 - With thanks to @MojoVampire for spotting this. Automerge-Triggered-By: GH:gvanrossum --- Lib/asyncio/runners.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/asyncio/runners.py b/Lib/asyncio/runners.py index d274576..065691b 100644 --- a/Lib/asyncio/runners.py +++ b/Lib/asyncio/runners.py @@ -106,7 +106,7 @@ class Runner: # `signal.signal` may throw if `threading.main_thread` does # not support signals (e.g. embedded interpreter with signals # not registered - see gh-91880) - signal_handler = None + sigint_handler = None else: sigint_handler = None -- cgit v0.12