summaryrefslogtreecommitdiffstats
path: root/Tools/idle
Commit message (Collapse)AuthorAgeFilesLines
* Ad primitive debugger interface (so far it will step and show you theGuido van Rossum1998-10-133-1/+130
| | | | source, but it doesn't yet show the stack).
* MiscGuido van Rossum1998-10-131-5/+9
|
* Whoops -- referenced self.top before it was set.Guido van Rossum1998-10-131-1/+1
|
* Added history and completion commands.Guido van Rossum1998-10-131-0/+11
|
* UpdatedGuido van Rossum1998-10-131-40/+52
|
* Add class browser functionality.Guido van Rossum1998-10-131-0/+17
|
* Add a close() method and bind to WM_DELETE_WINDOW protocolGuido van Rossum1998-10-131-0/+4
|
* Clear the linecache before printing a tracebackGuido van Rossum1998-10-131-0/+7
|
* Added class browser binding.Guido van Rossum1998-10-131-0/+2
|
* Much improved, much left to do.Guido van Rossum1998-10-131-11/+153
|
* Make the return key do what I mean more often.Guido van Rossum1998-10-131-1/+1
|
* Make the return key do what I mean more often.Guido van Rossum1998-10-131-9/+11
|
* Adding the beginnings of a Class browser. Incomplete, yet.Guido van Rossum1998-10-131-0/+70
|
* Add new command, "Open module". You select or type a module name,Guido van Rossum1998-10-132-0/+33
| | | | and it opens the source.
* Subsume functionality from Popup menu in Debug menu.Guido van Rossum1998-10-121-7/+95
| | | | Other stuff so the PyShell window can be resurrected from the Windows menu.
* Get rid of PopUp menu.Guido van Rossum1998-10-121-10/+30
| | | | | Create a simple Windows menu. (Imperfect when Untitled windows exist.) Add wakeup() method: deiconify, raise, focus.
* Generalize menu creation.Guido van Rossum1998-10-121-20/+15
|
* Add Debug and Help menu items.Guido van Rossum1998-10-121-1/+13
|
* Added a menu bar to every window.Guido van Rossum1998-10-121-1/+45
|
* Add menu configuration to the event configuration.Guido van Rossum1998-10-121-60/+123
|
* Pass a root to the help window.Guido van Rossum1998-10-121-1/+1
|
* Add parent argument to 'to to line number' dialog box.Guido van Rossum1998-10-121-1/+2
|
* 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.
* Add Unix main script and test program.Guido van Rossum1998-10-102-0/+22
|
* Initial checking of Tk-based Python IDE.Guido van Rossum1998-10-1023-0/+2829
| | | | | Features: text editor with syntax coloring and undo; subclassed into interactive Python shell which adds history.
* Print serious errors to stderr instead of stdout.Guido van Rossum1998-09-141-4/+11
|
* From: "Tim Peters" <tim_one@msn.com>Guido van Rossum1998-06-091-3/+9
| | | | | | | | | | The 1.5.1 tabnanny.py suffers an assert error if fed a script whose last line is both indented and lacks a newline: if 1: print 'oh fudge' # no newline here: The attached version repairs that.
* typo in error message (fname vs. file).Guido van Rossum1998-04-281-1/+1
| | | | (Jack)
* Tim's version 4, with my modsGuido van Rossum1998-04-101-14/+6
|
* Add usage message when no arguments.Guido van Rossum1998-04-061-0/+4
|
* Tim's latest version (supports old and new tokenize modules)Guido van Rossum1998-04-061-77/+128
|
* Tim Peters' program for checking whether a program's indentation isGuido van Rossum1998-03-311-0/+302
sensitive to tab size. Uses a different strategy than tabpolice.py, but has compatible usage.