Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15168: Move importlb.test to test.test_importlib. | Brett Cannon | 2012-07-20 | 1 | -30/+0 |
| | | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution. | ||||
* | Fix importlib.test.__main__ to only worry about command-line flags when ↵ | Brett Cannon | 2012-02-17 | 1 | -8/+9 |
| | | | | directly executed. | ||||
* | Have importlib.test use argparse instead of some hacked up solution. | Brett Cannon | 2012-02-17 | 1 | -3/+8 |
| | |||||
* | Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon) | Éric Araujo | 2011-06-07 | 1 | -6/+1 |
| | |||||
* | Remove unnecessary XXX | Barry Warsaw | 2010-04-17 | 1 | -1/+0 |
| | |||||
* | PEP 3147 | Barry Warsaw | 2010-04-17 | 1 | -1/+6 |
| | |||||
* | Provide module docstrings for the two main test drivers in importlib that | Brett Cannon | 2009-08-30 | 1 | -0/+6 |
| | | | | | explain what they are for and how to use command-line arguments to tweak semantics. | ||||
* | Add support for a --builtin argument to importlib.test to trigger running | Brett Cannon | 2009-08-27 | 1 | -0/+5 |
| | | | | import-specific tests with __import__ instead of importlib. | ||||
* | Importlib was using custom code to discover all test modules in importlib.test. | Brett Cannon | 2009-07-15 | 1 | -0/+14 |
This has now been removed in favor of using unittest's test discovery code in TestLoader.discover(). |