[ python-Feature Requests-1462486 ] Scripts invoked by -m should trim exceptions
SourceForge.net
noreply at sourceforge.net
Sat Apr 1 02:23:23 CEST 2006
Feature Requests item #1462486, was opened at 2006-04-01 00:23
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=1462486&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Delaney (tcdelaney)
Assigned to: Nobody/Anonymous (nobody)
Summary: Scripts invoked by -m should trim exceptions
Initial Comment:
Currently in 2.5, an exception thrown from a script invoked by -m (runpy.run_module) will dump an exception like:
Traceback (most recent call last):
File "D:\Development\Python25\Lib\runpy.py", line 418, in run_module
filename, loader, alter_sys)
File "D:\Development\Python25\Lib\runpy.py", line 386, in _run_module_code
mod_name, mod_fname, mod_loader)
File "D:\Development\Python25\Lib\runpy.py", line 366, in _run_code
exec code in run_globals
File "D:\Development\modules\test25.py", line 53, in <module>
raise GeneratorExit('body')
GeneratorExit: body
This should probably be trimmed to:
Traceback (most recent call last):
File "test25.py", line 53, in <module>
raise GeneratorExit('body')
GeneratorExit: body
to match when a script is invoked by filename.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=1462486&group_id=5470
More information about the Python-bugs-list
mailing list