blob: 7c59eaa60bdb7d4107ccd5d2c22d51c2c5547837 [file] [log] [blame]
Guido van Rossumb33f6121999-01-08 17:26:02 +00001IDLE 0.2 - 8 January 1999
2-------------------------
3
4For news about this release, see the file NEWS.txt.
Guido van Rossuma0177771998-11-16 18:34:26 +00005
Guido van Rossum2927e781999-01-07 00:11:29 +00006This is an early release of IDLE, my own attempt at a Tkinter-based
7IDE for Python. It has the following features:
Guido van Rossuma0177771998-11-16 18:34:26 +00008
Guido van Rossum2927e781999-01-07 00:11:29 +00009- 100% pure Python
Guido van Rossuma0177771998-11-16 18:34:26 +000010- multi-window text editor with multiple undo and Python colorizing
11- Python shell (a.k.a. interactive interpreter) window subclass
Guido van Rossum2927e781999-01-07 00:11:29 +000012- debugger (not complete, but you can set breakpoints and step)
Guido van Rossum504b0bf1999-01-02 21:28:54 +000013- works on Windows and Unix (probably works on Mac too)
Guido van Rossuma0177771998-11-16 18:34:26 +000014
Guido van Rossumf9038981999-01-04 13:05:58 +000015The main program is in the file "idle"; on Windows you can use idle.pyw
16to avoid popping up a DOS console. Any arguments passed are interpreted
17as files that will be opened for editing.
Guido van Rossum72fe0851998-11-16 18:37:42 +000018
Guido van Rossum504b0bf1999-01-02 21:28:54 +000019IDLE requires Python 1.5.2, so it is currently only usable with the
20Python 1.5.2 beta distribution (luckily, IDLE is bundled with Python
211.5.2).
Guido van Rossuma0177771998-11-16 18:34:26 +000022
23Please send feedback to the Python newsgroup, comp.lang.python.
24
25--Guido van Rossum (home page: http://www.python.org/~guido/)