0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 00:38:00 +01:00

gh-113238: add Anchor to importlib.resources (#113801)

Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
This commit is contained in:
Mike Zimin 2024-01-16 13:55:59 +03:00 committed by GitHub
parent 04fabe22dd
commit c85c0026a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ from ._common import (
as_file,
files,
Package,
Anchor,
)
from .abc import ResourceReader
@ -11,6 +12,7 @@ from .abc import ResourceReader
__all__ = [
'Package',
'Anchor',
'ResourceReader',
'as_file',
'files',

View File

@ -0,0 +1 @@
Add ``Anchor`` to ``importlib.resources`` (in order for the code to comply with the documentation)