mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Run importlib's test suite.
 | |
| 
 | |
| Specifying the ``--builtin`` flag will run tests, where applicable, with
 | |
| builtins.__import__ instead of importlib.__import__.
 | |
| 
 | |
| """
 | |
| from . import test_main
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     import argparse
 | |
| 
 | |
|     parser = argparse.ArgumentParser(description='Execute the importlib test '
 | |
|                                                   'suite')
 | |
|     parser.add_argument('-b', '--builtin', action='store_true', default=False,
 | |
|                         help='use builtins.__import__() instead of importlib')
 | |
|     args = parser.parse_args()
 | |
|     test_main()
 | 
