summaryrefslogtreecommitdiff
path: root/Lib/imp.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15828: Restore support for C extension modules in imp.load_module()Nick Coghlan2012-09-011-2/+4
* Issue #15576: Allow extension modules to be a package's __init__Brett Cannon2012-08-101-2/+2
* Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() useBrett Cannon2012-07-131-24/+1
* Issue #15167 (as part of #13959): imp.get_magic() is no implemented inBrett Cannon2012-07-091-2/+7
* Issue #15056: imp.cache_from_source() and source_from_cache() raiseBrett Cannon2012-07-091-1/+4
* Issue #15256: Re-use the ImportError exception message as defined byBrett Cannon2012-07-091-1/+1
* Issue #15166: Re-implement imp.get_tag() using sys.implementation.Brett Cannon2012-07-021-1/+6
* Issue #13959: Add to imp.find_module() and load_module's docstringsBrett Cannon2012-06-151-4/+6
* Issue #13959: HaveBrett Cannon2012-05-111-24/+36
* Issue #13959: Deprecate imp.get_suffixes() for new attributes onBrett Cannon2012-05-111-13/+20
* don't append the bytecode suffix to the source suffixes globalBenjamin Peterson2012-05-051-2/+1
* Issue #13959: Re-implement imp.get_suffixes() in Lib/imp.py.Brett Cannon2012-05-041-5/+11
* Properly mark names in importlib._bootstrap as private.Brett Cannon2012-05-041-6/+6
* Re-indent.Brett Cannon2012-04-291-1/+0
* Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.Brett Cannon2012-04-291-1/+32
* Issue #13959: Re-implement imp.NullImporter in Lib/imp.py.Brett Cannon2012-04-291-2/+15
* 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-251-1/+1
* Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-221-3/+3
* Fix whitespace.Brett Cannon2012-04-211-1/+0
* Issue #13959: Re-implement imp.find_module() in Lib/imp.py.Brett Cannon2012-04-211-4/+68
* Don't worry about moving imp.get_tag() over to Lib/imp.py.Brett Cannon2012-04-211-2/+2
* Issue #13959: Re-implement imp.source_from_cache() in Lib/imp.py.Brett Cannon2012-04-211-1/+25
* Issue #13959: Re-implement imp.cache_from_source() in Lib/imp.py.Brett Cannon2012-04-201-3/+3
* Issue #13959: Keep imp.get_magic() in C code, but cache in importlibBrett Cannon2012-04-201-1/+3
* Issue #13959: Re-implement imp.load_compiled() in imp.py.Brett Cannon2012-04-171-5/+20
* Properly guard against special-casing.Brett Cannon2012-04-161-1/+1
* Issue #13959: Re-implement imp.load_source() in imp.py.Brett Cannon2012-04-161-1/+28
* Issue #13959: Fix a logic bug.Brett Cannon2012-04-161-1/+1
* Issue #13959: Re-implement imp.load_package() in imp.py.Brett Cannon2012-04-151-2/+17
* Issue #13959: Re-implement imp.load_module() in imp.py.Brett Cannon2012-04-151-1/+28
* Consider load_dynamic() something to keep in _imp.Brett Cannon2012-04-151-3/+4
* Issue #13959: Rename imp to _imp and add Lib/imp.py and beginBrett Cannon2012-04-151-0/+22