summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
Commit message (Expand)AuthorAgeFilesLines
* GH-106176, GH-104702: Fix reference leak when importing across multiple threa...Brett Cannon2023-08-291-12/+103
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-031-40/+1
* Remove double space in import error message (#103458)Ned Batchelder2023-04-141-1/+1
* GH-102700: allow built-in modules to be submodules (GH-103162)Brett Cannon2023-04-061-2/+0
* gh-101766: Fix refleak for _BlockingOnManager resources from test suite level...Dong-hee Na2023-02-171-5/+0
* gh-101766: Fix refleak for _BlockingOnManager resources (gh-101942)Dong-hee Na2023-02-171-0/+5
* gh-91351: Fix some bugs in importlib handling of re-entrant imports (GH-94504)Jean-Paul Calderone2023-01-211-37/+196
* gh-98139: enhance namespace package reprAnh71me2022-11-061-1/+1
* bpo-38693: Use f-strings instead of str.format() within importlib (#17058)Gregory P. Smith2022-10-061-26/+23
* gh-65961: Raise `DeprecationWarning` when `__package__` differs from `__spec_...Brett Cannon2022-10-051-1/+1
* gh-97850: Remove all known instances of module_repr() (#97876)Barry Warsaw2022-10-051-22/+0
* gh-94619: Remove long deprecated methods module_repr() and load_module() (#94...Barry Warsaw2022-08-051-6/+0
* bpo-35673: Add a public alias for namespace package __loader__ attribute (#29...Barry Warsaw2021-10-201-2/+2
* bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow2021-10-141-41/+136
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-051-4/+29
* bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-051-8/+24
* bpo-43392: Optimize repeated calls to `__import__()` (GH-24735)Germán Méndez Bravo2021-08-121-5/+16
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-241-2/+13
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-241-13/+2
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-241-2/+13
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-061-0/+6
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-301-2/+3
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-261-2/+4
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-241-14/+6
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-041-6/+18
* bpo-42403: Use @staticmethod in importlib (GH-23395)Victor Stinner2020-11-201-6/+6
* bpo-42403: Simplify importlib external bootstrap (GH-23397)Victor Stinner2020-11-191-0/+7
* bpo-38091: Import deadlock detection causes deadlock (GH-17518)Armin Rigo2020-03-031-0/+9
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-231-1/+6
* bpo-35923: Update the BuiltinImporter to use loader._ORIGIN instead of a hard...Dong-hee Na2019-09-111-2/+4
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-081-1/+1
* bpo-37444: Update differing exception between builtins and importlib (GH-14869)Ngalim Siregar2019-08-031-1/+1
* bpo-35887: Add make regen-importlib step to importlib._bootstrap docstring (G...Nina Zakharenko2019-02-131-3/+3
* bpo-35321: Set the spec origin to frozen in frozen modules (#11732)Nina Zakharenko2019-02-051-2/+4
* bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565)Serhiy Storchaka2018-10-291-56/+62
* bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873)Serhiy Storchaka2018-03-111-26/+27
* bpo-32303 - Consistency fixes for namespace loaders (#5481)Barry Warsaw2018-02-021-0/+12
* bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (#4118)Serhiy Storchaka2017-10-261-7/+13
* bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...Serhiy Storchaka2017-10-081-1/+2
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-181-13/+1
* bpo-31070: Fix a race condition in importlib _get_module_lock(). (#3033)Serhiy Storchaka2017-08-091-2/+12
* bpo-30891: Fix again importlib _find_and_load() (#2665)Victor Stinner2017-07-211-5/+5
* bpo-30876: Relative import from unloaded package now reimports the package (#...Serhiy Storchaka2017-07-121-4/+0
* bpo-30891: Fix importlib _find_and_load() race condition (#2646)Victor Stinner2017-07-101-28/+30
* bpo-30814: Fixed a race condition when import a submodule from a package. (#2...Serhiy Storchaka2017-07-061-14/+14
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-231-1/+4
* Issue #28026: Raise ImportError when exec_module() exists but create_module()...Eric Snow2016-09-081-3/+2
* Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-071-7/+7
* Issue #27974: Remove importlib._bootstrap._ManageReload.Brett Cannon2016-09-061-17/+0
* Issue #26972: Fix some mistakes in importlib-related docstrings.Brett Cannon2016-07-081-3/+3