Skip to content

Instantly share code, notes, and snippets.

@wolever
Last active November 11, 2016 22:56
Show Gist options
  • Save wolever/eea12ac95fc6c55bc96ce7581b25ed96 to your computer and use it in GitHub Desktop.
Save wolever/eea12ac95fc6c55bc96ce7581b25ed96 to your computer and use it in GitHub Desktop.
PDB Tricks
"""
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
" 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>
"""
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