On Wed, May 26, 2010 at 4:59 AM, Alex Hall <[email protected]> wrote: > > I am blind, using Jaws for Windows to access my computer > (http://www.freedomscientific.com). Is this debugger a cmd line tool, > or is it / is it part of an IDE? Basically I am hoping it is not its > own interface, as these are often not too compatible with screen > readers. I will definitely read through the page, though, and that > should help to answer the above question. I just figured I would ask > in case you had any knowledge of the debugger's accessibility.
It's a command-line tool, similar to the gnu debugger (if you're familiar with that). Just run "python -m pdb your_script.py" and you'll drop into the debugger's prompt. if your python interpreter works, this'll work just fine. Hugo _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor
