From bb5c0375538d53cf211da33734234ebfd7f65d92 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 21 May 2024 22:33:52 +0200 Subject: [PATCH] gh-119102: Fix REPL for dumb terminal (GH-119332) The site module gets the __main__ module to get _pyrepl.__main__. (cherry picked from commit de8f530841b55885b919677a6938ab33d4a92f20) Co-authored-by: Victor Stinner --- Lib/site.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/site.py b/Lib/site.py index 4ba078388a37b8..f1a6d9cf66fdc3 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -523,7 +523,12 @@ def register_readline(): pass def write_history(): - from _pyrepl.__main__ import CAN_USE_PYREPL + try: + # _pyrepl.__main__ is executed as the __main__ module + from __main__ import CAN_USE_PYREPL + except ImportError: + CAN_USE_PYREPL = False + try: if os.getenv("PYTHON_BASIC_REPL") or not CAN_USE_PYREPL: readline.write_history_file(history)