summaryrefslogtreecommitdiff
path: root/Lib/importlib/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #24192: Fix namespace package imports.Eric Snow2015-05-151-0/+1
* Issue #23911: Move path-based bootstrap code to a separate frozen module.Eric Snow2015-05-021-2/+18
* Issue #19720: Suppressed context for some exceptions in importlib.Serhiy Storchaka2014-11-211-2/+3
* Issue #20383: Introduce importlib.util.module_from_spec().Brett Cannon2014-05-301-2/+1
* Issue #20884: Don't assume in importlib.__init__ that __file__ isBrett Cannon2014-03-211-1/+6
* Issue 19944: Fix importlib.find_spec() so it imports parents as needed.Eric Snow2014-01-251-37/+9
* Issue 19713: Add PEP 451-related deprecations.Eric Snow2014-01-061-1/+5
* Issue 19851: Fix a regression in reloading submodules.Eric Snow2013-12-091-4/+11
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-221-14/+50
* Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules.Eric Snow2013-10-311-2/+6
* Closes issue #18698: ensure importlib.reload() returns the module out of sys....Eric Snow2013-08-141-1/+3
* Closes issue #18598: Have the exception message forBrett Cannon2013-08-121-1/+3
* #18681: merge with 3.3.Ezio Melotti2013-08-101-1/+1
|\
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18193: Add importlib.reload(), documenting (but notBrett Cannon2013-06-141-1/+33
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | Issue #17099: Have importlib.find_loader() raise ValueError whenBrett Cannon2013-03-131-0/+2
|/
* Issue #16489: Make it clearer that importlib.find_loader() requiresBrett Cannon2012-11-171-1/+3
* Issue #15502: Finish bringing importlib.abc in line with the currentBrett Cannon2012-08-101-3/+3
* Close #15386: There was a loophole that meant importlib.machinery and imp wou...Nick Coghlan2012-07-201-2/+11
* Issue #15210: Greatly simplify the test for supporting importlibBrett Cannon2012-07-041-2/+2
* Issue #15210: If _frozen_importlib is not found in sys.modules byBrett Cannon2012-07-021-1/+1
* Issue #14657: The frozen instance of importlib used for bootstrap is now also...Antoine Pitrou2012-06-171-8/+15
* Issue #13959: Introduce importlib.find_loader().Brett Cannon2012-05-121-0/+24
* Update importlib.invalidate_caches() to be more general.Brett Cannon2012-02-271-21/+10
* Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ...Antoine Pitrou2012-02-201-2/+2
* Move setup code from importlib.__init__ toBrett Cannon2012-02-081-27/+3
* Relocate importlib._case_ok to importlib._bootstrap.Brett Cannon2012-01-261-19/+0
* Move some code from importlib.__init__ to importlib._bootstrap thatBrett Cannon2012-01-251-32/+11
* Simplify and remove few dependencies on 'errno', thanks to PEP 3151.Florent Xicluna2011-10-281-2/+1
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-031-1/+1
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-151-15/+1
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-121-4/+0
* Define importlib.__init__.__all__.Brett Cannon2009-03-121-1/+3
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-041-2/+2
* Rewrite the code implementing __import__ for importlib. Now it is much simplerBrett Cannon2009-02-071-6/+4
* Add some comment markers to more clearly delineate what different parts of theBrett Cannon2009-01-221-1/+5
* Document the (very small) public API for importlib. As time goes on and someBrett Cannon2009-01-201-21/+26
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-181-0/+133