]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-121008: Fix idlelib.run tests (#121046)
authorVictor Stinner <vstinner@python.org>
Wed, 26 Jun 2024 13:41:16 +0000 (15:41 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Jun 2024 13:41:16 +0000 (15:41 +0200)
When testing IDLE, don't create a Tk to avoid side effects such as
installing a PyOS_InputHook hook.

Lib/idlelib/run.py

index 53e80a9b42801fb305d19b4fd4fa64dc7a6de52a..8974b52674fb8c8ea0d2f3280fbb240b34fdbd24 100644 (file)
@@ -91,13 +91,20 @@ def capture_warnings(capture):
             _warnings_showwarning = None
 
 capture_warnings(True)
-tcl = tkinter.Tcl()
 
-def handle_tk_events(tcl=tcl):
-    """Process any tk events that are ready to be dispatched if tkinter
-    has been imported, a tcl interpreter has been created and tk has been
-    loaded."""
-    tcl.eval("update")
+if idlelib.testing:
+    # gh-121008: When testing IDLE, don't create a Tk object to avoid side
+    # effects such as installing a PyOS_InputHook hook.
+    def handle_tk_events():
+        pass
+else:
+    tcl = tkinter.Tcl()
+
+    def handle_tk_events(tcl=tcl):
+        """Process any tk events that are ready to be dispatched if tkinter
+        has been imported, a tcl interpreter has been created and tk has been
+        loaded."""
+        tcl.eval("update")
 
 # Thread shared globals: Establish a queue between a subthread (which handles
 # the socket) and the main thread (which runs user code), plus global