-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
pkg_resources
type the declared global variables
#4267
pkg_resources
type the declared global variables
#4267
Conversation
92ee226
to
85a68ec
Compare
if TYPE_CHECKING: | ||
# All of these are set by the @_call_aside methods above | ||
__resource_manager = ResourceManager() # Won't exist at runtime | ||
resource_exists = __resource_manager.resource_exists | ||
resource_isdir = __resource_manager.resource_isdir | ||
resource_filename = __resource_manager.resource_filename | ||
resource_stream = __resource_manager.resource_stream | ||
resource_string = __resource_manager.resource_string | ||
resource_listdir = __resource_manager.resource_listdir | ||
set_extraction_path = __resource_manager.set_extraction_path | ||
cleanup_resources = __resource_manager.cleanup_resources | ||
|
||
working_set = WorkingSet() | ||
require = working_set.require | ||
iter_entry_points = working_set.iter_entry_points | ||
add_activation_listener = working_set.subscribe | ||
run_script = working_set.run_script | ||
run_main = run_script |
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.
My question here is:
Instead of "re-declaring" the global variables, wouldn't it make more sense to ditch the @_call_aside
and just run the majority of the body of _initialize*
functions directly on the global scope?
@jaraco, do you know if _call_aside()
/_initialize_master_working_set()
/_initialize()
are used in pkg_resources
just for the sake of organising the code, or is this very small delay on the execution a trick that solves a specific problem?
(I do like the way the code is organised right now, but if changes are needed for type-checking, I would prefer not having double book keeping. Of course we can decide that the type-checking here is not worth the trouble).
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.
I would prefer not having double book keeping
FWIW, you already have to for other checkers (just as a note, most of these variables were moved from the top of the file, so this PR doesn't introduce double book-keeping).
That being said, I agree it'd be nicer if we didn't have to, but I wouldn't want to revamp pkg_resources
too much outside of making it a fully typed package to take it out of typeshed. Unless it's a simple change.
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.
I did a quick search, and it seems that there might be packages out there depending on pkg_resources._initialize*
:
- https://setuptools.pypa.io/en/latest/history.html#id1383
- https://github.com/search?q=%2Fpkg_resources%5C._initialize%2F&type=code
So we probably cannot avoid the double book keeping...
…sources-type-global-variables
…sources-type-global-variables
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.
Thank you very much @Avasam.
I think it is probably better to get this one going, we can address concerns in future PRs.
If we want the code to be "type-safe" at some point, we will probably need some degree typing gymnastics.
Summary of changes
Moved declarations of
@_call_aside
defined globals closer to where they're defined. And afterResourceManager
&WorkingSet
to avoid forward reference issuesExtracted from #4242 Works towards #2345 , resolves a few
reportOptionalCall
issues that #4192 would raisePull Request Checklist
newsfragments/
.(See documentation for details)