I've got a peace of the programming code similar to this:

import sys

def func1():
    func2()

def func2():
    raise Exception('test error')

def main():
    err = None

    try:
        func1()
    except:
        err = sys.exc_info()[1]
        pass

    # some extra processing, involving checking err details (if err is not None)

    # need to re-raise err so caller can do its own handling
    if err:
        raise err

if __name__ == '__main__':
    main()

When func2 raises an exception I receive the following Traceback:

Traceback (most recent call last):
  File "err_test.py", line 25, in <module>
    main()
  File "err_test.py", line 22, in main
    raise err
Exception: test error

From here I don't see where exception is coming from. Original Traceback is lost.

How can I preserve original Traceback and re-raise it? I want to see something similar to this:

Traceback (most recent call last):
  File "err_test.py", line 26, in <module>
    main()
  File "err_test.py", line 13, in main
    func1()
  File "err_test.py", line 4, in func1
    func2()
  File "err_test.py", line 7, in func2
    raise Exception('test error')
Exception: test error
link|improve this question

78% accept rate
feedback

3 Answers

up vote 5 down vote accepted

A blank raise raises the last exception.

# need to re-raise err so caller can do its own handling
if err:
    raise

If you use raise something Python has no way of knowing if something was a exception just caught before, or a new exception with a new stack trace. That's why there is the blank raise that preserves the stack trace.

link|improve this answer
sweet, that worked! thanks a lot – parxier Jan 28 '11 at 5:56
feedback

You can get a lot of information about the exception via the sys.exc_info() along with the traceback module

try the following extension to your code.

import sys
import traceback

def func1():
    func2()

def func2():
    raise Exception('test error')

def main():

    try:
        func1()
    except:
        exc_type, exc_value, exc_traceback = sys.exc_info()
        # Do your verification using exc_value and exc_traceback

        print "*** print_exception:"
        traceback.print_exception(exc_type, exc_value, exc_traceback,
                                  limit=3, file=sys.stdout)

if __name__ == '__main__':
    main()

This would print, similar to what you wanted.

*** print_exception:
Traceback (most recent call last):
  File "err_test.py", line 14, in main
    func1()
  File "err_test.py", line 5, in func1
    func2()
  File "err_test.py", line 8, in func2
    raise Exception('test error')
Exception: test error
link|improve this answer
No, I don't want to print it in the main(). I want to re-raise it with the original traceback and let caller of main() to handle it (e.g. ignore, print to the console, save into the db, etc). Jochen's solution worked. – parxier Jan 28 '11 at 6:08
feedback

Your main function needs to look like this:

def main():
    try:
        func1()
    except Exception, err:
        # error processing
        raise

This is the standard way of handling (and re-raising) errors. Here is a codepad demonstration.

link|improve this answer
I have a feeling that except Exception, err: can be bypassed with old-style raise "bad exception" way of raising exceptions – parxier Jan 28 '11 at 6:05
@parxier then use except object, err – Gabi Purcaru Jan 28 '11 at 7:42
It's not any different from err = sys.exc_info()[1]. Anyway, the main point was to re-raise err outside of except block without loosing original traceback. Jochen's solution worked. – parxier Jan 29 '11 at 2:44
feedback

Your Answer

 
or
required, but never shown

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