summaryrefslogtreecommitdiffstats
path: root/Tools/idle/Debugger.py
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of old IDLE. Lib/idlelib rules!Guido van Rossum2003-06-141-308/+0
|
* Remove unnecessary importsNeal Norwitz2002-09-121-1/+0
|
* Fix by Edward K Ream to make breakpoints work on Windows: insert aGuido van Rossum2002-02-251-0/+1
| | | | missing call to self.canonic().
* Whitespace normalization.Tim Peters2001-01-171-4/+4
|
* Break cycle on close.Guido van Rossum1999-06-251-0/+2
|
* Add canonic() function -- for brand new bdb.py feature.Guido van Rossum1999-02-011-0/+4
|
* Add Quit button to the debugger window.Guido van Rossum1999-01-281-0/+6
|
* Bind ESC to close-window.Guido van Rossum1999-01-111-1/+2
|
* Checking in IDLE 0.2.Guido van Rossum1999-01-021-26/+29
| | | | | | | | | | | | Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet.
* Use of Breakpoint class should be bdb.Breakpoint.Guido van Rossum1998-10-241-1/+1
|
* Use and pass through the 'force' flag to set_dict() where appropriate.Guido van Rossum1998-10-191-8/+35
| | | | | | Default source and globals checkboxes to false. Don't interact in user_return(). Add primitive set_breakpoint() method.
* Restructured and more consistent. Save checkboxes across instantiations.Guido van Rossum1998-10-161-36/+78
|
* Debugger can now show local and global variables.Guido van Rossum1998-10-161-6/+44
|
* OopsGuido van Rossum1998-10-161-1/+3
|
* Better debugger support (show stack etc).Guido van Rossum1998-10-161-8/+73
|
* Don't show function name if there is noneGuido van Rossum1998-10-151-1/+3
|
* Polish the Debugger GUI a bit.Guido van Rossum1998-10-141-12/+36
| | | | Closing it now also does the right thing.
* Ad primitive debugger interface (so far it will step and show you theGuido van Rossum1998-10-131-0/+92
source, but it doesn't yet show the stack).