summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/extension/test_loader.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-3/+3
| | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-121-3/+3
|
* Implement importlib.util.set_loader: a decorator to automatically setBrett Cannon2009-03-101-0/+2
| | | | __loader__ on modules.
* Factor out helper code from importlib.test.extension.test_path_hook.Brett Cannon2009-02-071-12/+11
|
* Move importlib completely over to using rpartition and accepting the emptyBrett Cannon2009-02-071-1/+2
| | | | string for top-level modules.
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-3/+3
|
* Move extension module loader tests over to importlib.test.abc.LoaderTests.Brett Cannon2009-02-011-3/+22
|
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-181-0/+37
planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.