Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index eeb33e1..eec0b70 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -1458,7 +1458,8 @@
if tkversionwarning:
shell.interp.runcommand(''.join(("print('", tkversionwarning, "')")))
- root.mainloop()
+ while flist.inversedict: # keep IDLE running while files are open.
+ root.mainloop()
root.destroy()
if __name__ == "__main__":