What is the Python API equivalent of PyErr_Print(), from the C interface?

I'm assuming a call in either the sys, or traceback modules, but can't find any functions therein that make calls to PyErr_Print().

Addendum

I'm after the Python call to get the same functionality as PyErr_PrintEx(), described as:

Print a standard traceback to sys.stderr and clear the error indicator.

That is I want to make the Python call that has this effect.

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

There's no Python function that's exactly equivalent to PyErr_PrintEx (the real name of PyErr_Print;-), including for example setting sys.last_traceback and friends (which are only supposed to be set to help a post-mortem debugging from the interactive interpreter for exceptions which have not been caught). What exact combination of functionality are you looking for?

link|improve this answer
I just noticed the slight discrepancy, I'm after the printing and clearing bit. – Matt Joiner Jan 5 '10 at 9:01
Only way to "clear [[the error]] bit" in Python code is to catch the exception in an except clause of a try/except statement (sometimes this can be implicit, in the __exit__ method of the context manager in a with statement). – Alex Martelli Jan 5 '10 at 16:32
ok, what about the printing part, what is the closest call? print_exc? – Matt Joiner Jan 6 '10 at 3:06
2  
Yep, traceback.print_exc is the closest analog. – Alex Martelli Jan 6 '10 at 3:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.