Skip to content

Instantly share code, notes, and snippets.

@goldhand
Created February 5, 2016 19:58
Show Gist options
  • Save goldhand/79a13cba568fbcc79491 to your computer and use it in GitHub Desktop.
Save goldhand/79a13cba568fbcc79491 to your computer and use it in GitHub Desktop.
example using pdb for python debugging instead of print
import pdb; pdb.set_trace()
# --or--
import pudb; pudb.set_trace()
# l
# n >> nextline
# context >> get current context
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment