https://github.com/python/cpython/commit/114389470ec3db457c589b3991b695258d23ce5a
commit: 114389470ec3db457c589b3991b695258d23ce5a
branch: main
author: Kirill Podoprigora <[email protected]>
committer: ambv <[email protected]>
date: 2024-07-06T16:49:33-04:00
summary:
gh-119909: Fix ``NameError`` in ``asyncio`` REPL (#121341)
files:
M Lib/asyncio/__main__.py
diff --git a/Lib/asyncio/__main__.py b/Lib/asyncio/__main__.py
index 91fff9aaee337b..3e2fe93943d4ed 100644
--- a/Lib/asyncio/__main__.py
+++ b/Lib/asyncio/__main__.py
@@ -116,7 +116,7 @@ def run(self):
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)
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]