summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/support.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-153/+0
|
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-011-80/+0
| | | | importlib.test.support to importlib.test.source.util.
* Tests of case-sensitivity were being executed on OSs which did not have aBrett Cannon2009-01-181-0/+10
| | | | | | 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-181-0/+223
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.