Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13591: import_module potentially imports a module twice. | Meador Inge | 2011-12-15 | 1 | -0/+17 |
| | |||||
* | Fix a spelling mistake in a comment. | Brett Cannon | 2010-07-03 | 1 | -1/+1 |
| | |||||
* | Move over to using assertRaises as a context manager for importlib tests. | Brett Cannon | 2009-08-27 | 1 | -1/+2 |
| | | | | | 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. | ||||
* | Add a test for importlib.import_module. | Brett Cannon | 2009-03-04 | 1 | -1/+10 |
| | |||||
* | Rewrite the code implementing __import__ for importlib. Now it is much simpler | Brett Cannon | 2009-02-07 | 1 | -2/+6 |
| | | | | | | | | | and relies much more on meta path finders to abstract out various parts of import. As part of this the semantics for import_module tightened up and now follow __import__ much more closely (biggest thing is that the 'package' argument must now already be imported, else a SystemError is raised). | ||||
* | Rename importlib.test.support to importlib.test.util. | Brett Cannon | 2009-02-01 | 1 | -9/+9 |
| | |||||
* | Add initial implementation of importlib. See the NOTES files for what is | Brett Cannon | 2009-01-18 | 1 | -0/+62 |
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. |