Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Importlib's documentation said that importlib.abc.PyLoader inherited from | Brett Cannon | 2009-07-20 | 1 | -1/+1 | |
| | | | | | | | | | importlib.abc.ResourceLoader, when in fact it did not. Fixed the ABC to inherit as documented. This doesn't introduce an backwards-incompatiblity as the code in PyLoader already required the single method ResourceLoader defined as an abstract method. | |||||
* | Implement InspectLoader for FrozenImporter. | Brett Cannon | 2009-03-15 | 1 | -2/+1 | |
| | ||||||
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 1 | -1/+2 | |
| | ||||||
* | A few more docstring/API cleanups for importlib. | Brett Cannon | 2009-03-15 | 1 | -25/+37 | |
| | ||||||
* | Introduce importlib.abc. The module contains various ABCs related to imports | Brett Cannon | 2009-03-09 | 1 | -0/+110 | |
(mostly stuff specified by PEP 302). There are two ABCs, PyLoader and PyPycLoader, which help with implementing source and source/bytecode loaders by implementing load_module in terms of other methods. This removes a lot of gritty details loaders typically have to worry about. |