diff options
author | David Hewitt <1939362+davidhewitt@users.noreply.github.com> | 2022-04-30 05:23:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 05:23:54 (GMT) |
commit | c7b7f12b8609f932a23a9bc96a5de7cd9ecd5723 (patch) | |
tree | 3be775bde6603c438a4e8a1f979dc0e5e79a67ff /Lib | |
parent | e8c2f72b94ae5dfba50c0f2e2c06b7ee975c8acb (diff) | |
download | cpython-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.py | 2 |
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 |