1 # http://wiki.python.org/moin/PdbRcIdea
3 # .pdbrc only allows for debugger commands; you cannot insert Python scripts.
5 # To overcome this restriction, this .pdbrc executes pdbrc.py,
6 # which can contain arbitrary Python commands.
8 # If pdbrc.py is missing, you get an error message (which doesn't hurt).
11 x = execfile(os.path.expanduser("~/lib/python/pdbrc.py"))