Created
July 23, 2014 21:11
-
-
Save justinabrahms/44b077ee314914b3ff78 to your computer and use it in GitHub Desktop.
default pdbpp to start with sticky enabled
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
import pdb | |
class Config(pdb.DefaultConfig): | |
sticky_by_default = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
&& also (tangentially) relevant:
.pdbrc
part (not the.py
part), I always add something likealias ipy from IPython import embed; embed()
-- opens an IPython interpreter in current frame, w/ all locals and globals in scope!