mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	* Trivial cleanups following bpo-31370 * Also cleanup the "importlib._bootstrap_external" module
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			736 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			736 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest
 | 
						|
from test.support import import_module
 | 
						|
 | 
						|
# Skip test if _tkinter wasn't built, if idlelib is missing,
 | 
						|
# or if tcl/tk is not the 8.5+ needed for ttk widgets.
 | 
						|
tk = import_module('tkinter')  # imports _tkinter
 | 
						|
if tk.TkVersion < 8.5:
 | 
						|
    raise unittest.SkipTest("IDLE requires tk 8.5 or later.")
 | 
						|
idlelib = import_module('idlelib')
 | 
						|
 | 
						|
# Before test imports, tell IDLE to avoid changing the environment.
 | 
						|
idlelib.testing = True
 | 
						|
 | 
						|
# unittest.main and test.libregrtest.runtest.runtest_inner
 | 
						|
# call load_tests, when present, to discover tests to run.
 | 
						|
from idlelib.idle_test import load_tests
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    tk.NoDefaultRoot()
 | 
						|
    unittest.main(exit=False)
 | 
						|
    tk._support_default_root = 1
 | 
						|
    tk._default_root = None
 |