summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/extension
Commit message (Collapse)AuthorAgeFilesLines
* Add the missing importlib.test.extension.util.Brett Cannon2009-02-071-0/+21
|
* Factor out helper code from importlib.test.extension.test_path_hook.Brett Cannon2009-02-074-39/+19
|
* 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-012-9/+9
|
* Move extension module loader tests over to importlib.test.abc.LoaderTests.Brett Cannon2009-02-011-3/+22
|
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
|
* Move importlib.test.extension.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-2/+19
|
* Tests of case-sensitivity were being executed on OSs which did not have aBrett Cannon2009-01-181-2/+2
| | | | | | case-insensitive file system, leading to test failures. This was due to using the TestCase objects directly instead of the guard in the test_main() function. Move over to a class decorator instead to control if the tests should be run.
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-185-0/+168
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.