[issue28026] module_from_spec() should raise an error in 3.6

2016-09-08 Thread Eric Snow
Changes by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue28026] module_from_spec() should raise an error in 3.6

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset ada5620efd82 by Eric Snow in branch 'default': Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing. https://hg.python.org/cpython/rev/ada5620efd82 -- nosy: +python-dev __

[issue28026] module_from_spec() should raise an error in 3.6

2016-09-08 Thread Brett Cannon
Brett Cannon added the comment: LGTM -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue28026] module_from_spec() should raise an error in 3.6

2016-09-08 Thread Eric Snow
New submission from Eric Snow: In Lib/importlib/_bootstrap.py, module_from_spec() specifies that the current deprecation warning should be an error in 3.6. So, here's a patch. -- assignee: eric.snow components: Interpreter Core files: module_from_spec.diff keywords: patch messages: 275