Skip to content

Instantly share code, notes, and snippets.

@januszm
Created August 23, 2020 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save januszm/e25cc9fd7a1ce97fa10e36720c7589e2 to your computer and use it in GitHub Desktop.
Save januszm/e25cc9fd7a1ce97fa10e36720c7589e2 to your computer and use it in GitHub Desktop.
Print stacktrace without site-packages in debugger
import traceback; [line for line in traceback.format_stack() if not 'site-packages' in line]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment