diff options
Diffstat (limited to 'lib/pythonrc')
-rw-r--r-- | lib/pythonrc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/pythonrc b/lib/pythonrc new file mode 100644 index 0000000..ec59d2b --- /dev/null +++ b/lib/pythonrc @@ -0,0 +1,15 @@ +import os +import pdb +import pprint +import rlcompleter, readline +import sys + +# enable tab completion +readline.parse_and_bind("tab: complete") + +# also get tab completion in pdb +pdb.Pdb.complete = rlcompleter.Completer(locals()).complete + +# prettyprint with p() +pp = pprint.PrettyPrinter(indent=4, width=80) +p = pp.pprint |