summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-1/+1
|\
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* | Fix bug in __import__ during Python shutdownVictor Stinner2016-03-241-2/+9
* | Merge for issue #26367Brett Cannon2016-02-201-1/+4
|\ \ | |/
| * Issue #26367: Have importlib.__init__() raise RuntimeError whenBrett Cannon2016-02-201-1/+1
* | Issue #25791: Warn when __package__ != __spec__.parent.Brett Cannon2016-01-221-3/+9
* | Issue #25791: Raise an ImportWarning when __spec__ or __package__ areBrett Cannon2016-01-151-0/+6
|/
* Issue #24769: Interpreter now starts properly when dynamic loadingLarry Hastings2015-08-251-1/+1
* PEP 489: Multi-phase extension module initializationNick Coghlan2015-05-231-10/+13
* Issue #24192: Fix namespace package imports.Eric Snow2015-05-161-5/+14
* Issue #23911: Move path-based bootstrap code to a separate frozen module.Eric Snow2015-05-031-1332/+11
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-27/+51
* Issue #23014: Make importlib.abc.Loader.create_module() required whenBrett Cannon2015-01-091-0/+14
* - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile isBarry Warsaw2014-12-011-2/+2
|\
| * - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile isBarry Warsaw2014-12-011-2/+2
* | Issue #19720: Suppressed context for some exceptions in importlib.Serhiy Storchaka2014-11-211-1/+1
* | Issue #22834: Have import suppress FileNotFoundError when the currentBrett Cannon2014-11-211-1/+6
* | Issue #21052: Don't raise ImportWarning for sys.meta_path orBrett Cannon2014-10-101-2/+2
* | Fix a parameter name to make sense againBrett Cannon2014-05-301-2/+3
* | Issue #20383: Introduce importlib.util.module_from_spec().Brett Cannon2014-05-301-218/+163
* | Merge from 3.4 (for #21226).Eric Snow2014-05-131-0/+23
|\ \ | |/
| * Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject.Eric Snow2014-05-121-0/+23
| * Issue #20763: Fix importlib.machinery.PathFinder to supportBrett Cannon2014-02-261-1/+1
| * update magic number for #20625Benjamin Peterson2014-02-191-1/+2
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-101-1/+2
* | Issue #20763: Fix importlib.machinery.PathFinder to supportBrett Cannon2014-02-261-1/+1
* | update magic number for #20625Benjamin Peterson2014-02-191-1/+2
|/
* Issue 19713: Remove PEP 451-related code that should have been factored out.Eric Snow2014-01-081-24/+4
* Issue 19713: Add PEP 451-related deprecations.Eric Snow2014-01-071-25/+99
* Remove dead PEP 451 code.Eric Snow2014-01-071-10/+0
* Issue #19927: Add __eq__ to path-based loaders in importlib.Eric Snow2014-01-041-0/+14
* Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder.Eric Snow2014-01-031-1/+1
* Remove some dead code in importlib, introduced with the PEP 451 patch.Eric Snow2013-12-191-8/+3
* Issue #18864: Add a setter for ModuleSpec.has_location.Eric Snow2013-12-111-0/+4
* Issue #19698: Remove exec_module() from the built-in and extensionBrett Cannon2013-11-291-27/+36