Skip to content

Commit c7b7f12

Browse files
authored
gh-91880 - fix typo (GH-92069)
#91880 (comment) - With thanks to @MojoVampire for spotting this. Automerge-Triggered-By: GH:gvanrossum
1 parent e8c2f72 commit c7b7f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/runners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def run(self, coro, *, context=None):
106106
# `signal.signal` may throw if `threading.main_thread` does
107107
# not support signals (e.g. embedded interpreter with signals
108108
# not registered - see gh-91880)
109-
signal_handler = None
109+
sigint_handler = None
110110
else:
111111
sigint_handler = None
112112

0 commit comments

Comments
 (0)