forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bpo-32248: Introduce the concept of Loader.get_resource_reader() (pyt…
- Loading branch information
1 parent
5b76bdb
commit bca4218
Showing
4 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Misc/NEWS.d/next/Library/2017-12-15-15-34-12.bpo-32248.zmO8G2.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Add :class:`importlib.abc.ResourceReader` as an ABC to provide a | ||
unified API for reading resources contained within packages. Loaders | ||
wishing to support resource reading are expected to implement the | ||
``get_resource_reader(fullname)`` method. | ||
|
||
Also add :mod:`importlib.resources` as the stdlib port of the | ||
``importlib_resources`` PyPI package. The modules provides a high-level | ||
API for end-users to read resources in a nicer fashion than having to | ||
directly interact with low-level details such as loaders. | ||
|
||
Thanks to this work, :class:`importlib.abc.ResourceLoader` has now | ||
been documented as deprecated due to its under-specified nature and | ||
lack of features as provided by :class:`importlib.abc.ResourceReader`. |