Issue #989712: Support using Tk without a mainloop.
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 14 Mar 2012 01:36:13 +0000 (18:36 -0700)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 14 Mar 2012 01:36:13 +0000 (18:36 -0700)
Lib/idlelib/run.py
Misc/NEWS

index 25338ffaa61aabc03d6f67dbadaae379dfc80bff..962c6c0a08d0aef66dfe631348498d76ffe66249 100644 (file)
@@ -38,6 +38,21 @@ else:
         return s
     warnings.formatwarning = idle_formatwarning_subproc
 
+
+def handle_tk_events():
+    """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."""
+    tkinter = sys.modules.get('tkinter')
+    if tkinter and tkinter._default_root:
+        # tkinter has been imported, an Tcl interpreter was created and
+        # tk has been loaded.
+        root = tkinter._default_root
+        while root.tk.dooneevent(tkinter._tkinter.DONT_WAIT):
+            # Process pending events.
+            pass
+
+
 # Thread shared globals: Establish a queue between a subthread (which handles
 # the socket) and the main thread (which runs user code), plus global
 # completion, exit and interruptable (the main thread) flags:
@@ -93,6 +108,7 @@ def main(del_exitfunc=False):
             try:
                 seq, request = rpc.request_queue.get(block=True, timeout=0.05)
             except queue.Empty:
+                handle_tk_events()
                 continue
             method, args, kwargs = request
             ret = method(*args, **kwargs)
index aee1ad8b3db88097638a1aad834ce9becf313530..9b4d2c2ef95cf084634b3a2bb810c325a942aa5c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #989712: Support using Tk without a mainloop.
+
 - Issue #5219: Prevent event handler cascade in IDLE.
 
 - Issue #3835: Refuse to use unthreaded Tcl in threaded Python.