Feature Requests item #1462486, was opened at 2006-03-31 19:23 Message generated for change (Comment added) made by gvanrossum 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: Nick Coghlan (ncoghlan) 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. ---------------------------------------------------------------------- >Comment By: Guido van Rossum (gvanrossum) Date: 2006-04-05 20:45 Message: Logged In: YES user_id=6380 I'm not so sure. Who looks at the top of the traceback anyway? And it might hide clues about problems caused by runpy.py. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=355470&aid=1462486&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com