Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15168: Move importlb.test to test.test_importlib. | Brett Cannon | 2012-07-20 | 1 | -25/+0 |
| | | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution. | ||||
* | Issue #14585: test_import now runs all tests under | Brett Cannon | 2012-04-20 | 1 | -0/+25 |
| | | | | | importlib.test.import_ using builtins.__import__() instead of just the relative import tests. | ||||
* | Importlib was using custom code to discover all test modules in importlib.test. | Brett Cannon | 2009-07-15 | 1 | -31/+0 |
| | | | | | This has now been removed in favor of using unittest's test discovery code in TestLoader.discover(). | ||||
* | Do not execute the .pyc/.pyo files as well as the .py files. | Brett Cannon | 2009-02-01 | 1 | -1/+4 |
| | |||||
* | Remove a debugging print statement that accidentally got left in. | Brett Cannon | 2009-01-19 | 1 | -1/+0 |
| | |||||
* | Skip over any file or folder that starts with a dot (e.g. .svn). | Brett Cannon | 2009-01-18 | 1 | -0/+3 |
| | |||||
* | Add initial implementation of importlib. See the NOTES files for what is | Brett Cannon | 2009-01-18 | 1 | -0/+26 |
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. |