summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorDavid Hewitt <1939362+davidhewitt@users.noreply.github.com>2022-04-30 05:23:54 (GMT)
committerGitHub <noreply@github.com>2022-04-30 05:23:54 (GMT)
commitc7b7f12b8609f932a23a9bc96a5de7cd9ecd5723 (patch)
tree3be775bde6603c438a4e8a1f979dc0e5e79a67ff /Lib
parente8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb (diff)
downloadcpython-c7b7f12b8609f932a23a9bc96a5de7cd9ecd5723.zip
cpython-c7b7f12b8609f932a23a9bc96a5de7cd9ecd5723.tar.gz
cpython-c7b7f12b8609f932a23a9bc96a5de7cd9ecd5723.tar.bz2
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
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/runners.py2
1 files changed, 1 insertions, 1 deletions
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