Skip to content

Instantly share code, notes, and snippets.

@wrunk
Created April 11, 2012 22:49
Show Gist options
  • Save wrunk/2363300 to your computer and use it in GitHub Desktop.
Save wrunk/2363300 to your computer and use it in GitHub Desktop.
Printing a python call stack independent of an exception
import traceback
for line in traceback.format_stack():
print line.strip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment