summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/builtin
Commit message (Collapse)AuthorAgeFilesLines
* Move over to using assertRaises as a context manager for importlib tests.Brett Cannon2009-08-271-3/+6
| | | | | Obviously one shouldn't do whole sale conversions like this, but I was already going through the test code and I was bored at the airport.
* convert old fail* assertions to assert*Benjamin Peterson2009-06-302-9/+9
|
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-153-16/+48
|
* Implement importlib.util.set_loader: a decorator to automatically setBrett Cannon2009-03-101-1/+2
| | | | __loader__ on modules.
* Move importlib's built-in importer to use rpartition for __package__.Brett Cannon2009-02-071-1/+1
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-012-6/+6
|
* Move built-in loader tests to importlib.test.abc.LoaderTests.Brett Cannon2009-02-011-3/+23
|
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
|
* Move importlib.test.builtin.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-8/+27
|
* Add importlib.machinery with its first tenants, BuitinImporter andBrett Cannon2009-01-222-3/+4
| | | | | | | | FrozenImporter. Docs forthcoming. I plan on all finders and loaders (and most likely hooks) to live in imoprtlib.machinery. Utility stuff will end up in importlib.util. Higher-level API stuff will stay on imoprtlib directly (e.g. import_module).
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-183-0/+100
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.