Skip to content

Commit c2ad5fd

Browse files
[3.13] gh-119909: Fix NameError in asyncio REPL (GH-121341) (#121447)
gh-119909: Fix ``NameError`` in ``asyncio`` REPL (GH-121341) (cherry picked from commit 1143894) Co-authored-by: Kirill Podoprigora <[email protected]>
1 parent 29618b5 commit c2ad5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def run(self):
116116
if err := check():
117117
raise RuntimeError(err)
118118
except Exception as e:
119-
console.interact(banner="", exitmsg=exit_message)
119+
console.interact(banner="", exitmsg="")
120120
else:
121121
try:
122122
run_multiline_interactive_console(console=console)

0 commit comments

Comments
 (0)