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