[issue19719] add importlib.abc.SpecLoader and SpecFinder

2014-01-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 21786a7f8036 by Brett Cannon in branch 'default': Issue #19719: Update various finder and loader ABCs such that their http://hg.python.org/cpython/rev/21786a7f8036 -- nosy: +python-dev ___ Python tracker

[issue19719] add importlib.abc.SpecLoader and SpecFinder

2014-01-07 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19719 ___

[issue19719] add importlib.abc.SpecLoader and SpecFinder

2013-11-22 Thread Brett Cannon
New submission from Brett Cannon: That way the ABCs can require find_spec/load_spec, inherit from the older ABCs, and provide stubs that do what's necessary to support the old, deprecated find_module/find_loader/load_module API (and automatically include the deprecation warning). --