[issue17566] Make importlib.abc.Loader.module_repr optional

2013-04-09 Thread Brett Cannon
Brett Cannon added the comment: Fixed by http://hg.python.org/cpython/rev/8e733e30edf6 by raising NotImplementedError and relying on the fact that ModuleType.__repr__() swallows any exception. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___

[issue17566] Make importlib.abc.Loader.module_repr optional

2013-04-09 Thread Brett Cannon
Changes by Brett Cannon : -- components: +Library (Lib) -Documentation title: Document that importlib.abc.Loader.module_repr is abstract and thus needed by various other ABCs -> Make importlib.abc.Loader.module_repr optional versions: -Python 3.3 __