mirror of
https://github.com/python/cpython.git
synced 2025-07-29 22:24:49 +00:00

* 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',
|
|
]
|