]> granicus.if.org Git - python/commit
Issue #14285: Do not catch __init__.py exceptions in runpy
authorMartin Panter <vadmium+py@gmail.com>
Thu, 3 Dec 2015 01:23:10 +0000 (01:23 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Thu, 3 Dec 2015 01:23:10 +0000 (01:23 +0000)
commit657257edb61c7d69a9e73352fdad8f243e1494ab
treea7a3a16c452b07b7d5120442a0c8cf05fc66b499
parent6648bf5661b79f5b40385b21570dff6f146c5eb5
Issue #14285: Do not catch __init__.py exceptions in runpy

Initialize package before calling find_spec() for __main__, so that we do not
incorrectly handle exceptions from __init__.py. When runpy is used from the
Python CLI, use an internal exception rather than ImportError, to avoid
catching unexpected exceptions.

Also remove exception message rewriting in _run_module_as_main(), because it
seems to be redundant with the _get_main_module_details() function.
Lib/runpy.py
Lib/test/test_cmd_line_script.py
Lib/test/test_runpy.py
Misc/NEWS