cpython/Tools/idle
Guido van Rossum b287b3ad1b Got rid of debug print statement in goto_line_event(). 1999-01-11 14:49:00 +00:00
..
AutoExpand.py Added Meta-/ binding for Unix as alt for Alt-/. 1999-01-04 16:32:21 +00:00
AutoIndent.py Added something like Tim Peters' backspace patch. 1999-01-03 00:47:35 +00:00
Bindings.py Paul Prescod's patches to allow the stack viewer to pop up when a 1999-01-08 15:31:07 +00:00
ClassBrowser.py Use a HSeparator between the classes and the items. 1999-01-11 14:46:06 +00:00
ColorDelegator.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
Debugger.py Bind ESC to close-window. 1999-01-11 14:46:55 +00:00
Delegator.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
EditorWindow.py Allow tearing off of the Windows menu. 1999-01-09 22:00:10 +00:00
FileList.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
FormatParagraph.py Change paragraph width limit to 70 (like Emacs M-Q). 1999-01-07 00:12:15 +00:00
FrameViewer.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
GrepDialog.py Need to import sys! 1999-01-04 15:52:33 +00:00
History.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
IOBinding.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
IdleHistory.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
NEWS.txt What's new in this release. 1999-01-08 17:26:02 +00:00
Outline.py Initial checking of Tk-based Python IDE. 1998-10-10 18:48:31 +00:00
OutputWindow.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
Percolator.py Initial checking of Tk-based Python IDE. 1998-10-10 18:48:31 +00:00
PyShell.py Paul Prescod's patches to allow the stack viewer to pop up when a 1999-01-08 15:31:07 +00:00
README.txt What's new in this release. 1999-01-08 17:26:02 +00:00
ReplaceDialog.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
ScriptBinding.py I think I like it better if it prints the traceback even when it displays 1999-01-11 14:47:54 +00:00
ScrolledList.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
SearchBinding.py Got rid of debug print statement in goto_line_event(). 1999-01-11 14:49:00 +00:00
SearchDialog.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
SearchDialogBase.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
SearchEngine.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
Separator.py Separator classes (draggable divider between two panes). 1999-01-11 14:45:11 +00:00
StackViewer.py Close on ESC. 1999-01-09 21:58:11 +00:00
TODO.txt Separating TODO from README. 1999-01-07 00:10:00 +00:00
UndoDelegator.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
WidgetRedirector.py Initial checking of Tk-based Python IDE. 1998-10-10 18:48:31 +00:00
WindowList.py Don't traceback when wakeup() is called when the window has been destroyed. 1999-01-09 22:01:33 +00:00
ZoomHeight.py Adjusted Unix height to work with fvwm96. :=( 1999-01-04 16:31:31 +00:00
eventparse.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
extend.py Added ScriptBinding to standard bindings. 1999-01-09 05:00:59 +00:00
extend.txt Formatted some paragraphs 1999-01-04 13:05:58 +00:00
help.txt Updated a bunch of things (it was mostly still 0.1!) 1999-01-09 21:57:56 +00:00
idle Add Unix main script and test program. 1998-10-10 18:58:15 +00:00
idle.bat Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
idle.pyw Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
idlever.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
keydefs.py Ran eventparse.py again. 1999-01-04 16:35:02 +00:00
tabnanny.py Added a -q ('quiet') option to tabnanny, which causes only the names of 1998-12-18 13:56:58 +00:00
test.py Cosmetic change 1998-10-15 14:08:20 +00:00

README.txt

IDLE 0.2 - 8 January 1999
-------------------------

For news about this release, see the file NEWS.txt.

This is an early release of IDLE, my own attempt at a Tkinter-based
IDE for Python.  It has the following features:

- 100% pure Python
- multi-window text editor with multiple undo and Python colorizing
- Python shell (a.k.a. interactive interpreter) window subclass
- debugger (not complete, but you can set breakpoints and step)
- works on Windows and Unix (probably works on Mac too)

The main program is in the file "idle"; on Windows you can use idle.pyw
to avoid popping up a DOS console.  Any arguments passed are interpreted
as files that will be opened for editing.

IDLE requires Python 1.5.2, so it is currently only usable with the
Python 1.5.2 beta distribution (luckily, IDLE is bundled with Python
1.5.2).

Please send feedback to the Python newsgroup, comp.lang.python.

--Guido van Rossum (home page: http://www.python.org/~guido/)