mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	 243fdcb40e
			
		
	
	
		243fdcb40e
		
			
		
	
	
	
	
		
			
			* gh-106531: Remove importlib.resources._legacy Syncs with importlib_resources 6.0. * Remove documentation for removed functionality.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Read resources contained within a package."""
 | |
| 
 | |
| from ._common import (
 | |
|     as_file,
 | |
|     files,
 | |
|     Package,
 | |
| )
 | |
| 
 | |
| from .abc import ResourceReader
 | |
| 
 | |
| 
 | |
| __all__ = [
 | |
|     'Package',
 | |
|     'ResourceReader',
 | |
|     'as_file',
 | |
|     'files',
 | |
| ]
 |