This should be a trivial question, but my search so far has been fruitless:
I\'m using the Python debugger (pdb) for the first time, and was quite pleased to find mo
You need to import names before you can refer to them in the debugger.
(Pdb) from jam2dot import JamParser (Pdb) b JamParser.parse