[issue21157] Update imp docs for a PEP 451 world

2014-05-09 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue21157] Update imp docs for a PEP 451 world

2014-05-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9809a791436d by Brett Cannon in branch '3.4': Issue #21157: Touch up imp docs to be more explicit about importlib http://hg.python.org/cpython/rev/9809a791436d New changeset 418780d59502 by Brett Cannon in branch 'default': Merge for issue #21157 ht

[issue21157] Update imp docs for a PEP 451 world

2014-04-04 Thread Thomas Heller
Changes by Thomas Heller : -- nosy: +theller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21157] Update imp docs for a PEP 451 world

2014-04-04 Thread Brett Cannon
Brett Cannon added the comment: imp.find_module() might also best be updated to point out that importlib.import_module() exists for those cases where a replacement for sys.path is not necessary. As for imp.load_module(), it might also be best to admit that import is simply not structured to w

[issue21157] Update imp docs for a PEP 451 world

2014-04-04 Thread Brett Cannon
Brett Cannon added the comment: Sorry, that should have been importlib.util.find_spec(). -- ___ Python tracker ___ ___ Python-bugs-lis

[issue21157] Update imp docs for a PEP 451 world

2014-04-04 Thread Brett Cannon
New submission from Brett Cannon: imp.find_module() should point to importlib.find_spec() instead of find_loader(). As for imp.load_module() I've started a discussion on import-sig on how to best handle that. -- assignee: brett.cannon components: Documentation messages: 215547 nosy: br