[issue20790] Make sure exec_module() implementations are documented

2014-02-27 Thread Brett Cannon
Brett Cannon added the comment: Somehow managed to glance right over it. Guess I was more frazzled than I thought last night. -- resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20790

[issue20790] Make sure exec_module() implementations are documented

2014-02-26 Thread Brett Cannon
New submission from Brett Cannon: E.g. importlib.abc.InspectLoader() has load_module() deprecated by no equivalent exec_module() documented. Make sure that no other exec_module() instances have been added but undocumented. -- assignee: brett.cannon components: Documentation messages:

[issue20790] Make sure exec_module() implementations are documented

2014-02-26 Thread R. David Murray
R. David Murray added the comment: It doesn't? I checked all the links that I made in the whatsnew entry when I made it, and importlib.abc.InspectLoader.exec_module takes me to an exec_module method entry under InspectLoader. -- nosy: +r.david.murray