summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/abc.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15502: Refactor some code.Brett Cannon2012-08-101-4/+1
* Issue #15502: Finish bringing importlib.abc in line with the currentBrett Cannon2012-08-101-14/+28
* Close #15519: Properly expose WindowsRegistryFinder in importlib and bring th...Nick Coghlan2012-08-021-1/+1
* Issue #15502: Bring the importlib ABCs into line with the current state of th...Nick Coghlan2012-08-021-21/+49
* Typo.Barry Warsaw2012-07-311-2/+2
* Integration of importdocs from the features/pep-420 repo.Barry Warsaw2012-07-291-1/+18
* Closes #15030: Make importlib.abc.PyPycLoader respect the new .pycBrett Cannon2012-07-021-1/+7
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.Marc-Andre Lemburg2012-04-251-1/+1
* Issue #14605: Revert renaming of _SourcelessFileLoader, since it causedMarc-Andre Lemburg2012-04-251-1/+1
* Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoaderMarc-Andre Lemburg2012-04-241-1/+1
* Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-221-5/+28
* Have importlib take advantage of ImportError's new 'name' and 'path'Brett Cannon2012-04-131-7/+11
* unused imports, pep8Philip Jenvey2012-02-251-6/+4
* Move some code from importlib.__init__ to importlib._bootstrap thatBrett Cannon2012-01-251-2/+2
* Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-1/+14
* Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn...Florent Xicluna2011-12-101-2/+2
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-131-15/+21
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-131-13/+13
* While not strictly necessary thanks to the odd ABC inheritance done throughBrett Cannon2010-08-221-0/+14
* Make importlib.abc.SourceLoader the primary mechanism for importlib.Brett Cannon2010-07-031-5/+0
* Move importlib.abc.SourceLoader to _bootstrap.Brett Cannon2010-06-281-101/+1
* Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader.Brett Cannon2010-06-271-10/+260
* Clarify importlib.abc.PyPycLoader.write_bytecode().Brett Cannon2009-12-121-2/+3
* Implement the PEP 302 protocol for get_filename() asBrett Cannon2009-07-201-1/+17
* Importlib's documentation said that importlib.abc.PyLoader inherited fromBrett Cannon2009-07-201-1/+1
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-151-2/+1
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-151-1/+2
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-151-25/+37
* Introduce importlib.abc. The module contains various ABCs related to importsBrett Cannon2009-03-091-0/+110