Last active
November 11, 2016 22:56
-
-
Save wolever/eea12ac95fc6c55bc96ce7581b25ed96 to your computer and use it in GitHub Desktop.
PDB Tricks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
I have F8 in Vim (see pdb.vim) bound to insert this statement. | |
It will: | |
- Still work if running tests under nosetests | |
- Can be disabled if it's accidentally added in a loop by setting "st.off = True" | |
- The XXX is highlighted in Vim, and BREAK is easy to grep for | |
""" | |
from nose.tools import set_trace as st; st.__dict__.get("off") or st() #XXX: BREAK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Binds F8 to insert a debug statement | |
" Add to ~/.vim/ftplugin/python.vim or ~/.vim/ftplugin/python/pdb.vim | |
map <buffer> <leader>d Ofrom nose.tools import set_trace as st; st.__dict__.get("off") or st() #BREAK XXX<esc> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Make sure that an accidentally pdb.set_trace() doesn't bring production to a halt | |
""" | |
if not DEBUG: | |
def whoops_set_trace(*a, **kw): | |
if whoops_set_trace.did_log: | |
return | |
import logging | |
logger = logging.getLogger("debugger_in_prod") | |
logger.error("whoopsie a debugger was left in prod (use AK_DEBUG=1 to allow it)") | |
whoops_set_trace.did_log = True | |
whoops_set_trace.did_log = False | |
import pdb | |
pdb.set_trace = whoops_set_trace | |
try: | |
from nose import tools | |
tools.set_trace = whoops_set_trace | |
except ImportError: | |
pass | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment