mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from test.support import run_unittest
 | 
						|
import importlib.test
 | 
						|
 | 
						|
 | 
						|
def test_main():
 | 
						|
    run_unittest(importlib.test.test_suite('importlib.test'))
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    test_main()
 |