mirror of
https://github.com/python/cpython.git
synced 2024-12-11 18:53:56 +08:00
c85c0026a6
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
20 lines
252 B
Python
20 lines
252 B
Python
"""Read resources contained within a package."""
|
|
|
|
from ._common import (
|
|
as_file,
|
|
files,
|
|
Package,
|
|
Anchor,
|
|
)
|
|
|
|
from .abc import ResourceReader
|
|
|
|
|
|
__all__ = [
|
|
'Package',
|
|
'Anchor',
|
|
'ResourceReader',
|
|
'as_file',
|
|
'files',
|
|
]
|