# This is startup file for interactive python debugger.
#
# Text version here
#
# Generated by gvim :runtime syntax/2html.vim
#
# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/498182
import pdb, rlcompleter
pdb.Pdb.complete = rlcompleter.Completer().complete
# http://wiki.python.org/moin/PdbRcIdea
# .pdbrc only allows for debugger commands; you cannot insert Python scripts.
# To overcome this restriction, this .pdbrc executes pdbrc.py,
# which can contain arbitrary Python commands.
# If pdbrc.py is missing, you get an error message (which doesn't hurt).
import os
execfile(os.path.expanduser("~/lib/python/pdbrc.py"))
This is the page http://phd.pp.ru/Software/dotfiles/pdbrc.html.
It was generated on Fri, 20 Aug 2010 22:13:55 GMT from CheetahTemplate pdbrc.tmpl.
Some rights are reserved.
Read more about technical aspects of the site.