summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Expose source_path and bytecode_path on _PyFileLoader.Brett Cannon2009-02-011-9/+12
|
* Fix importlib.machinery.FrozenImporter.load_module() to set __package__Brett Cannon2009-02-011-1/+6
| | | | | properly. Discovered by also moving the loader tests over to importlib.test.abc.LoaderTests.
* Document both importlib.machinery.BuiltinImporter and FrozenImporter.Brett Cannon2009-01-251-2/+2
|
* Add importlib.machinery with its first tenants, BuitinImporter andBrett Cannon2009-01-221-67/+24
| | | | | | | | 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).
* Fix a typo in some code that is not tested or supported yet.Brett Cannon2009-01-191-1/+1
| | | | Closes issue 4993. Thanks Antoine Pitrou for the catch.
* Add initial implementation of importlib. See the NOTES files for what isBrett Cannon2009-01-181-0/+997
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.