This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ncoghlan
Recipients Arfrever, brett.cannon, eric.snow, ezio.melotti, mattheww, ncoghlan, vaultah
Date 2017-08-23.05:26:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503465986.7.0.633362758125.issue16217@psf.upfronthosting.co.za>
In-reply-to
Content
The reason we don't always drop the importlib frames in general is because we need them when we're debugging importlib itself, as well as when folks are calling into it directly. However, I think it would be reasonable to do it unconditionally for unhandled exceptions triggered via "-m": if we want the unfiltered exception in that case, we can either edit runpy to skip the filtering (when working on runpy), or else call the runpy API directly, rather than via -m.

That means I like the idea of implementing the traceback filtering and display inside runpy._run_module_as_main itself, rather than relying on the default interpreter level traceback display.

One potential approach to that would be to expand the current code that suppresses tracebacks entirely for runpy._Error exceptions to also handle the "except Exception as exc:" case and print out a traceback variants that omits any frames from runpy, importlib, or _frozen_importlib (KeyboardInterrupt and SystemExit would still escape unmodified)

As far as the implementation goes, this could potentially be made a general feature of the new(ish) TracebackException https://docs.python.org/3/library/traceback.html#tracebackexception-objects class by accepting an "ignore_modules" iterable as a parameter to TracebackException.format() and then ignoring frames running code from those modules (conveniently, runpy, importlib, and _frozen_importlib between them will exercise the cases of a single-file module, a self-contained package, and a frozen module, so only namespace package support would end up relying entirely on synthetic test cases).
History
Date User Action Args
2017-08-23 05:26:26ncoghlansetrecipients: + ncoghlan, brett.cannon, mattheww, ezio.melotti, Arfrever, eric.snow, vaultah
2017-08-23 05:26:26ncoghlansetmessageid: <1503465986.7.0.633362758125.issue16217@psf.upfronthosting.co.za>
2017-08-23 05:26:26ncoghlanlinkissue16217 messages
2017-08-23 05:26:26ncoghlancreate