[issue23013] Tweak wording for importlib.util.LazyLoader in regards to Loader.create_module()

2015-01-16 Thread Brett Cannon
Brett Cannon added the comment: Change went in through making create_module() required. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23013 ___

[issue23013] Tweak wording for importlib.util.LazyLoader in regards to Loader.create_module()

2014-12-12 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- dependencies: +Don't have importlib.abc.Loader.create_module() be optional ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23013 ___

[issue23013] Tweak wording for importlib.util.LazyLoader in regards to Loader.create_module()

2014-12-12 Thread Brett Cannon
Brett Cannon added the comment: Fix is part of issue #23014, so if that goes in then this will be fixed as a side-effect. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23013 ___

[issue23013] Tweak wording for importlib.util.LazyLoader in regards to Loader.create_module()

2014-12-08 Thread Brett Cannon
New submission from Brett Cannon: The docs for importlib.util.LazyLoader emphatically say that a loader cannot define importlib.abc.Loader.create_module() if it is to be subclassed. What in fact should say is that the subclass' create_module() will not be called; whether it is defined or not