mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #24137: Run IDLE, test_idle, and htest with tkinter default root disabled.
Fix code and tests that fail with this restriction. Fix htests to not create a second and redundant root and mainloop.
This commit is contained in:
parent
aacd53f6cb
commit
b60adc54d4
15 changed files with 92 additions and 84 deletions
|
@ -6,6 +6,7 @@ import_module('threading') # imported by PyShell, imports _thread
|
|||
tk = import_module('tkinter') # imports _tkinter
|
||||
if tk.TkVersion < 8.5:
|
||||
raise unittest.SkipTest("IDLE requires tk 8.5 or later.")
|
||||
tk.NoDefaultRoot()
|
||||
idletest = import_module('idlelib.idle_test')
|
||||
|
||||
# Without test_main present, regrtest.runtest_inner (line1219) calls
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue