summaryrefslogtreecommitdiffstats
path: root/Tools/idle/StackViewer.py
Commit message (Collapse)AuthorAgeFilesLines
* New stack viewer, uses a tree widget.Guido van Rossum2000-02-151-230/+89
| | | | (XXX: the debugger doesn't yet use this.)
* Make initial stack viewer widerGuido van Rossum1999-05-211-1/+1
|
* Protect against accessing an empty stack.Guido van Rossum1999-02-011-2/+11
|
* Close on ESC.Guido van Rossum1999-01-091-1/+2
|
* Checking in IDLE 0.2.Guido van Rossum1999-01-021-11/+13
| | | | | | | | | | | | 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.
* Add optional 'force' argument (default 0) to load_dict().Guido van Rossum1998-10-191-2/+2
| | | | If set, redo the display even if it's the same dict.
* Do nothing when loading the same dict as before.Guido van Rossum1998-10-161-1/+6
|
* Debugger can now show local and global variables.Guido van Rossum1998-10-161-32/+48
|
* Rename classes to StackViewer (the widget) and StackBrowser (the toplevel).Guido van Rossum1998-10-161-6/+10
|
* Restructured into a browser and a widget.Guido van Rossum1998-10-161-161/+87
|
* Whoops -- referenced self.top before it was set.Guido van Rossum1998-10-131-1/+1
|
* Add a close() method and bind to WM_DELETE_WINDOW protocolGuido van Rossum1998-10-131-0/+4
|
* Add a label at the top showing (very basic) help for the stack viewer.Guido van Rossum1998-10-101-0/+21
| | | | Add a label at the bottom showing the exception info.
* Initial checking of Tk-based Python IDE.Guido van Rossum1998-10-101-0/+288
Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history.