The following snippet:

import traceback

def a():
    b()

def b():
    try:
        c()
    except:
        traceback.print_exc()

def c():
    assert False

a()

Produces this output:

Traceback (most recent call last):
  File "test.py", line 8, in b
    c()
  File "test.py", line 13, in c
    assert False
AssertionError

What should I use if I want the complete stack trace including the call to a?

If it matters I have Python 2.6.6

edit: What I'd like to get is the same information I'd get if I left the try except out and let the exception propagate to the top level. This snippet for example:

def a():
    b()

def b():
    c()

def c():
    assert False

a()

Produces this output:

Traceback (most recent call last):
  File "test.py", line 10, in <module>
    a()
  File "test.py", line 2, in a
    b()
  File "test.py", line 5, in b
    c()
  File "test.py", line 8, in c
    assert False
AssertionError
link|improve this question

60% accept rate
feedback

3 Answers

Use

 traceback.print_stack()

http://docs.python.org/library/traceback.html#traceback.print_stack

suxmac2 $ python out.py 
  File "out.py", line 16, in <module>
    a()
  File "out.py", line 5, in a
    b()
  File "out.py", line 11, in b
    traceback.print_stack()
link|improve this answer
so that's providing the other half, is there a way to get the whole thing as one piece? – tolomea May 22 '11 at 9:27
Call your own code later...nobody hinders you to call print_stack() and print_exc() yourself - or? – Blackmoon May 22 '11 at 9:33
traceback.print_exception(*sys.exc_info()) – Keith May 22 '11 at 9:36
@Keith that has the same effect as traceback.print_exc() – tolomea May 22 '11 at 10:51
I could call them both and merge the output, but it seems unlikey that the standard library doesn't cover this already, in essence I just want the same information that I'd get if I let the exception propagate to the top level – tolomea May 22 '11 at 10:53
feedback

The answer is right in front of you. From the python docs:

traceback.print_exc([limit[, file]])

Have a constant somewhere that defines a very high limit. If you want to make sure you ALWAYS get the full trace, you can do this:

import sys
traceback.print_exc(limit=sys.getrecursionlimit())

Placing this into your code:

import sys
import traceback

def a():
    b()

def b():
    try:
        c()
    except:
        traceback.print_exc(limit=sys.getrecursionlimit())

def c():
    assert False

a()
link|improve this answer
With that said, I would use a lower limit. I can assure you that you probably don't want to print the full stack trace for a max recursion overflow- which would typically be at least 10,000 levels deep. A limit of 20 is probably plenty. If you can't figure out what in your code is failing with the last 20 function calls, you should re-evaluate your design... – Namey May 22 '11 at 18:06
This produces the same result as my first snippet. Did it do something different for you? – tolomea May 23 '11 at 1:58
feedback

Why do not set the try except to call of a and raise the exception in object to propagate?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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