mirror of https://github.com/python/cpython
gh-119909: Fix ``NameError`` in ``asyncio`` REPL (#121341)
This commit is contained in:
parent
53e12025cd
commit
114389470e
|
@ -116,7 +116,7 @@ class REPLThread(threading.Thread):
|
|||
if err := check():
|
||||
raise RuntimeError(err)
|
||||
except Exception as e:
|
||||
console.interact(banner="", exitmsg=exit_message)
|
||||
console.interact(banner="", exitmsg="")
|
||||
else:
|
||||
try:
|
||||
run_multiline_interactive_console(console=console)
|
||||
|
|
Loading…
Reference in New Issue