summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source
Commit message (Collapse)AuthorAgeFilesLines
* Move importlib completely over to using rpartition and accepting the emptyBrett Cannon2009-02-071-1/+1
| | | | string for top-level modules.
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-016-9/+6
|
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-016-30/+123
| | | | importlib.test.support to importlib.test.source.util.
* Move source loader tests (including reload tests) over toBrett Cannon2009-02-012-73/+72
| | | | importlib.test.abc.LoaderTests.
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-301-2/+2
|
* Tests of case-sensitivity were being executed on OSs which did not have aBrett Cannon2009-01-181-2/+1
| | | | | | 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-187-0/+617
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.