mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	 2657df4744
			
		
	
	
		2657df4744
		
	
	
	
	
		
			
			This introduces a new function, imp.extension_suffixes(), which is currently undocumented. That is forthcoming once issue #14657 is resolved and how to expose file suffixes is decided.
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			839 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			839 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from importlib import _bootstrap
 | |
| from . import util
 | |
| 
 | |
| import collections
 | |
| import imp
 | |
| import sys
 | |
| import unittest
 | |
| 
 | |
| 
 | |
| class PathHookTests(unittest.TestCase):
 | |
| 
 | |
|     """Test the path hook for extension modules."""
 | |
|     # XXX Should it only succeed for pre-existing directories?
 | |
|     # XXX Should it only work for directories containing an extension module?
 | |
| 
 | |
|     def hook(self, entry):
 | |
|         return _bootstrap.FileFinder.path_hook((_bootstrap.ExtensionFileLoader,
 | |
|             imp.extension_suffixes(), False))(entry)
 | |
| 
 | |
|     def test_success(self):
 | |
|         # Path hook should handle a directory where a known extension module
 | |
|         # exists.
 | |
|         self.assertTrue(hasattr(self.hook(util.PATH), 'find_module'))
 | |
| 
 | |
| 
 | |
| def test_main():
 | |
|     from test.support import run_unittest
 | |
|     run_unittest(PathHookTests)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     test_main()
 |