bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). by serhiy-storchaka · Pull Request #6565 · python/cpython
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to top level modules being added to sys.modules before the modules that they import, I think this will make things worse rather than better: https://bugs.python.org/issue33331#msg319135
I've added a couple of alternative suggestions for possible improvement to the tracker issue, though.
When you're done making the requested changes, leave the comment: I have made the requested changes; please review again.
And if you don't make the requested changes, you will be put in the comfy chair!
I have made the requested changes; please review again.
Top level modules are now moved to the end of sys.modules, after the modules that they import.
Thanks for making the requested changes!
@ncoghlan, @brettcannon: please review the changes made to this pull request.
| if spec.loader is None: | ||
| if spec.submodule_search_locations is None: | ||
| raise ImportError('missing loader', name=spec.name) | ||
| # namespace package |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Namespace package.; capitalize and end in a period (and I realize this is a hold-over from how the code already was 😄 ).
| return sys.modules[spec.name] | ||
| # This must be done before putting the module in sys.modules | ||
| # (otherwise an optimization shortcut in import.c becomes | ||
| # wrong) |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a period.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I forgot I'd previously left a blocking review on this one. The move-to-the-end resolves the ordering concern I had, so this looks good to me now. Thanks!
This file contains hidden or 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