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 @@
as_file,
files,
Package,
Anchor,
)
from .abc import ResourceReader
@ -11,6 +12,7 @@
__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)