On Nov 8, 1:25 am, Paul McGuire <pt... at austin.rr.com> wrote: > Is there any way for me to suppress these non-value-added API-internal > traceback levels? Hey Paul, Have you taken a look at the traceback module? print_tb(sys.last_traceback, <limit>) or extract_tb(sys.last_traceback, limit) could do the trick.