Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move importlib completely over to using rpartition and accepting the empty | Brett Cannon | 2009-02-07 | 1 | -1/+1 |
| | | | | string for top-level modules. | ||||
* | Rename importlib.test.support to importlib.test.util. | Brett Cannon | 2009-02-01 | 6 | -9/+6 |
| | |||||
* | Split out support code that is specific to source tests out of | Brett Cannon | 2009-02-01 | 6 | -30/+123 |
| | | | | importlib.test.support to importlib.test.source.util. | ||||
* | Move source loader tests (including reload tests) over to | Brett Cannon | 2009-02-01 | 2 | -73/+72 |
| | | | | importlib.test.abc.LoaderTests. | ||||
* | Merge testing ABCs for importlib into importlib.test.abc. | Brett Cannon | 2009-01-30 | 1 | -2/+2 |
| | |||||
* | Tests of case-sensitivity were being executed on OSs which did not have a | Brett Cannon | 2009-01-18 | 1 | -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 is | Brett Cannon | 2009-01-18 | 7 | -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. |