aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/pkgutil.py
Commit message (Expand)AuthorAge
* gh-131152, pkgutil: Remove unused imports (#131149)Victor Stinner2025-03-12
* gh-97850: remove ``find_loader`` and ``get_loader`` from ``pkgutil`` (#119656)Bénédikt Tran2024-11-01
* gh-97850: Deprecate `find_loader` and `get_loader` in `pkgutil` (GH-98520)Nikita Sobolev2023-05-03
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-03
* gh-98040: Remove just the `imp` module (#98573)Barry Warsaw2023-04-28
* gh-68654: Clarify subdirectories used by pkgutil.extend_path (#103701)Randy2023-04-22
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-22
* bpo-44061: Fix pkgutil.iter_modules regression when passed a pathlib.Path obj...Miguel Brito2021-05-12
* bpo-43720: Update import-related stdlib deprecation messages to say they will...Brett Cannon2021-04-03
* bpo-41006: pkgutil imports lazily re (GH-20939)Victor Stinner2020-06-17
* bpo-12915: Improve Unicode support for package names and attributes. (GH-18517)Vinay Sajip2020-02-28
* bpo-12915: Add pkgutil.resolve_name (GH-18310)Vinay Sajip2020-02-14
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-09
* bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926)Sanyam Khurana2017-06-13
* Issue #17211: Yield a namedtuple in pkgutil.Eric Snow2016-09-07
* [merge from 3.5] - Update pkgutil docs to reference appropriate finder and lo...Senthil Kumaran2016-09-05
|\
| * Update pkgutil docs to reference appropriate finder and loader object documen...Senthil Kumaran2016-09-05
* | Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-08
* | Merge 3.5, issue #14209Łukasz Langa2016-06-11
|\|
| * Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packagesŁukasz Langa2016-06-11
* | Upgrade the imp module's deprecation to DeprecationWarning.Brett Cannon2015-10-16
|/
* Issue #20383: Introduce importlib.util.module_from_spec().Brett Cannon2014-05-30
* Issue #14710: Fix both pkgutil.find_loader() and get_loader() to notBrett Cannon2014-05-23
* Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing.Eric Snow2014-04-19
* Close #20839: pkgutil.find_loader now uses importlib.util.find_specNick Coghlan2014-03-04
* Issue 19944: Fix importlib.find_spec() so it imports parents as needed.Eric Snow2014-01-25
* Remove more usage of APIs deprecated by PEP 451.Eric Snow2014-01-06
* Issue #19708: Update pkgutil to use the new importer APIs.Eric Snow2014-01-04
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-22
* Close #19409: add missing import in pkgutilNick Coghlan2013-10-27
* Issue #17177: The imp module is pending deprecation.Brett Cannon2013-06-16
* Add reference implementation for PEP 443Łukasz Langa2013-06-05
* Merge fix for #16163 from 3.3Nick Coghlan2013-04-14
|\
| * Close issue #16163: handle submodules in pkgutil.iter_importersNick Coghlan2013-04-14
* | modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-12
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-25
* | replace threw with raised (#16714)Andrew Svetlov2012-12-19
|\|
| * replace threw with raised (#16714)Andrew Svetlov2012-12-19
| |\
* | | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
|\| |
| * | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-18
| |\|
* | | Issue #16120: Use |yield from| in stdlib.Andrew Svetlov2012-10-07
* | | utilize yield fromPhilip Jenvey2012-10-01
|/ /
* | Close #15386: There was a loophole that meant importlib.machinery and imp wou...Nick Coghlan2012-07-20
* | Issue #15343: Handle importlib.machinery.FileFinder instances in pkgutil.walk...Nick Coghlan2012-07-15
* | Take the first step in resolving the messy pkgutil vs importlib edge cases by...Nick Coghlan2012-07-15
* | Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of nested ...Antoine Pitrou2012-07-09
* | issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-24
* | Issue #14605: Don't error out if get_importer() returns None.Brett Cannon2012-04-27
* | Issue #14605: Make explicit the entries on sys.path_hooks that used toBrett Cannon2012-04-25
* | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-13