In Python, how can I print the current call stack from within a method (for debugging purposes).

link|improve this question

67% accept rate
feedback

2 Answers

up vote 16 down vote accepted

Here's an example of getting the stack via the traceback module, and printing it:

import traceback

def f():
    g()

def g():
    for line in traceback.format_stack():
        print line.strip()

f()

# Prints:
# File "so-stack.py", line 10, in <module>
#     f()
# File "so-stack.py", line 4, in f
#     g()
# File "so-stack.py", line 7, in g
#     for line in traceback.format_stack():

If you really only want to print the stack to stdout, you can use:

traceback.print_stack()

but getting it via traceback.format_stack() lets you do whatever you like with it.

link|improve this answer
feedback
import traceback
traceback.print_stack()
link|improve this answer
3  
Actually, I like traceback.print_exc() which gives you almost the same thing you would have gotten without the except statement (and is also less coding than the accepted answer). – martineau Nov 4 '10 at 19:23
feedback

Your Answer

 
or
required, but never shown

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