mirror of
https://github.com/python/cpython.git
synced 2024-11-27 23:47:29 +01:00
243fdcb40e
* gh-106531: Remove importlib.resources._legacy Syncs with importlib_resources 6.0. * Remove documentation for removed functionality.
18 lines
226 B
Python
18 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',
|
|
]
|