Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15168: Move importlb.test to test.test_importlib. | Brett Cannon | 2012-07-20 | 4 | -179/+0 |
| | | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution. | ||||
* | Use assertIsNone. Thanks Terry Reedy. | Eric V. Smith | 2012-06-28 | 2 | -4/+4 |
| | |||||
* | Changed importlib tests to use assertIs, assertIsInstance, etc., instead of ↵ | Eric V. Smith | 2012-06-27 | 2 | -7/+7 |
| | | | | just assertTrue. | ||||
* | Have importlib take advantage of ImportError's new 'name' and 'path' | Brett Cannon | 2012-04-13 | 1 | -3/+6 |
| | | | | attributes. | ||||
* | Move over to using assertRaises as a context manager for importlib tests. | Brett Cannon | 2009-08-27 | 1 | -3/+6 |
| | | | | | Obviously one shouldn't do whole sale conversions like this, but I was already going through the test code and I was bored at the airport. | ||||
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 2 | -9/+9 |
| | |||||
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 3 | -16/+48 |
| | |||||
* | Implement importlib.util.set_loader: a decorator to automatically set | Brett Cannon | 2009-03-10 | 1 | -1/+2 |
| | | | | __loader__ on modules. | ||||
* | Move importlib's built-in importer to use rpartition for __package__. | Brett Cannon | 2009-02-07 | 1 | -1/+1 |
| | |||||
* | Rename importlib.test.support to importlib.test.util. | Brett Cannon | 2009-02-01 | 2 | -6/+6 |
| | |||||
* | Move built-in loader tests to importlib.test.abc.LoaderTests. | Brett Cannon | 2009-02-01 | 1 | -3/+23 |
| | |||||
* | Merge testing ABCs for importlib into importlib.test.abc. | Brett Cannon | 2009-01-30 | 1 | -2/+2 |
| | |||||
* | Move importlib.test.builtin.test_finder over to importlib.test.finder_tests. | Brett Cannon | 2009-01-27 | 1 | -8/+27 |
| | |||||
* | Add importlib.machinery with its first tenants, BuitinImporter and | Brett Cannon | 2009-01-22 | 2 | -3/+4 |
| | | | | | | | | FrozenImporter. Docs forthcoming. I plan on all finders and loaders (and most likely hooks) to live in imoprtlib.machinery. Utility stuff will end up in importlib.util. Higher-level API stuff will stay on imoprtlib directly (e.g. import_module). | ||||
* | Add initial implementation of importlib. See the NOTES files for what is | Brett Cannon | 2009-01-18 | 3 | -0/+100 |
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. |