summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/source/util.py
Commit message (Collapse)AuthorAgeFilesLines
* Introduce importlib.abc. The module contains various ABCs related to importsBrett Cannon2009-03-091-0/+14
| | | | | | | (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.
* Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode.Brett Cannon2009-03-091-1/+5
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-011-2/+2
|
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-011-0/+88
importlib.test.support to importlib.test.source.util.