summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source/test_finder.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-5/+5
| | | | | | | | | | 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-2/+2
|
* Separate out finder for source and source/bytecode.Brett Cannon2009-02-211-1/+1
|
* Do some cleanup in importlib:Brett Cannon2009-02-211-1/+1
| | | | | | | + Ditch using arguments to super(). + Ditch subclassing from object directly. + Move directory check out of chaining path hook to file path hook/finder. + Rename some classes to better reflect they are finders, not importers.
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-1/+0
|
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-011-5/+6
| | | | importlib.test.support to importlib.test.source.util.
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
|
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-181-0/+130
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.