https://github.com/python/cpython/commit/9bf00322ba09e2439a78fcec77dc6917e1391e31
commit: 9bf00322ba09e2439a78fcec77dc6917e1391e31
branch: main
author: Ɓukasz Langa <[email protected]>
committer: ambv <[email protected]>
date: 2024-05-06T19:35:22Z
summary:

gh-118628: Don't display pyrepl warning on Windows (#118665)

files:
M Lib/_pyrepl/__main__.py

diff --git a/Lib/_pyrepl/__main__.py b/Lib/_pyrepl/__main__.py
index 417ee17adc83d3..c598019e7cd4ad 100644
--- a/Lib/_pyrepl/__main__.py
+++ b/Lib/_pyrepl/__main__.py
@@ -1,7 +1,8 @@
 import os
 import sys
 
-CAN_USE_PYREPL = True
+CAN_USE_PYREPL = sys.platform != "win32"
+
 
 def interactive_console(mainmodule=None, quiet=False, pythonstartup=False):
     global CAN_USE_PYREPL
@@ -21,7 +22,7 @@ def interactive_console(mainmodule=None, quiet=False, 
pythonstartup=False):
         sys.ps1 = ">>> "
     if not hasattr(sys, "ps2"):
         sys.ps2 = "... "
-    #
+
     run_interactive = None
     try:
         import errno
@@ -33,7 +34,10 @@ def interactive_console(mainmodule=None, quiet=False, 
pythonstartup=False):
         from .simple_interact import run_multiline_interactive_console
         run_interactive = run_multiline_interactive_console
     except Exception as e:
-        print(f"warning: can't use pyrepl: {e}", file=sys.stderr)
+        from .trace import trace
+        msg = f"warning: can't use pyrepl: {e}"
+        trace(msg)
+        print(msg, file=sys.stderr)
         CAN_USE_PYREPL = False
     if run_interactive is None:
         return sys._baserepl()

_______________________________________________
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]

Reply via email to