summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* 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-271-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