-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-32248 - Implement importlib.resources #4911
Changes from all commits
19fab84
ebed26a
e8e84f4
7ffc7dc
0da9744
871367d
d41bac3
d7ec339
08859e2
0fcc0c9
05353ed
4085c9c
e143941
cc28abb
3607846
1205e2a
1a68c68
535da74
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -282,7 +282,14 @@ Other Language Changes | |
New Modules | ||
=========== | ||
|
||
* None yet. | ||
importlib.resources | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. None of the other entries in this section (i.e. the "Improved Modules") uses links, so I just went with consistency here. |
||
------------------- | ||
|
||
This module provides several new APIs and one new ABC for access to, opening, | ||
and reading *resources* inside packages. Resources are roughly akin to files | ||
inside of packages, but they needn't be actual files on the physical file | ||
system. Module loaders can implement the | ||
:class:`importlib.abc.ResourceReader` ABC to support this new module's API. | ||
|
||
|
||
Improved Modules | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Block contents in reST directives should start with three spaces, not four.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like we have some inconsistency in this file. I just copied it from every other section in that file except the top level
.. module:: importlib
.