]> granicus.if.org Git - python/commit
Add importlib.machinery with its first tenants, BuitinImporter and
authorBrett Cannon <bcannon@gmail.com>
Thu, 22 Jan 2009 22:43:07 +0000 (22:43 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 22 Jan 2009 22:43:07 +0000 (22:43 +0000)
commit5abdc93eb85bc434c3b81b6c7fd1f05e7c9b5fb8
tree17dbd10a78d4efc28ab798d9cdb3146419223c28
parent7b3c89d88cac53325b30f583643d288426d90789
Add importlib.machinery with its first tenants, BuitinImporter and
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).
Lib/importlib/NOTES
Lib/importlib/_bootstrap.py
Lib/importlib/machinery.py [new file with mode: 0644]
Lib/importlib/test/builtin/test_finder.py
Lib/importlib/test/builtin/test_loader.py
Lib/importlib/test/frozen/test_finder.py
Lib/importlib/test/frozen/test_loader.py