Skip to content

Instantly share code, notes, and snippets.

@martinrusev
Created July 25, 2014 17:16
Show Gist options
  • Save martinrusev/ba3c78b518b47b00151e to your computer and use it in GitHub Desktop.
Save martinrusev/ba3c78b518b47b00151e to your computer and use it in GitHub Desktop.
Print current file/line in python
from inspect import currentframe, getframeinfo;frameinfo = getframeinfo(currentframe());print frameinfo.filename, frameinfo.lineno
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment