summaryrefslogtreecommitdiffstats
path: root/Lib/imp.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13959: Re-implement imp.load_compiled() in imp.py.Brett Cannon2012-04-171-5/+20
|
* Properly guard against special-casing.Brett Cannon2012-04-171-1/+1
|
* Issue #13959: Re-implement imp.load_source() in imp.py.Brett Cannon2012-04-171-1/+28
|
* Issue #13959: Fix a logic bug.Brett Cannon2012-04-171-1/+1
|
* Issue #13959: Re-implement imp.load_package() in imp.py.Brett Cannon2012-04-161-2/+17
| | | | | Thanks to Eric Snow for helping with imp.load_module() (previous commit) which led to the removal of a bunch of C code.
* Issue #13959: Re-implement imp.load_module() in imp.py.Brett Cannon2012-04-161-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
rewriting functionality in pure Python. To start, imp.new_module() has been rewritten in pure Python, put into importlib (privately) and then publicly exposed in imp.