blob: 497ae5e5f49519db71f7974bf437f586c433920f [file] [log] [blame]
Guido van Rossuma2ca4341999-04-07 18:41:59 +00001IDLE 0.4 - 7 April 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
Guido van Rossuma2ca4341999-04-07 18:41:59 +000021Python 1.5.2 distribution (luckily, IDLE is bundled with Python
Guido van Rossum504b0bf1999-01-02 21:28:54 +0000221.5.2).
Guido van Rossuma0177771998-11-16 18:34:26 +000023
Guido van Rossuma2ca4341999-04-07 18:41:59 +000024Please send feedback to the Python newsgroup, comp.lang.python, and cc
25me <guido@python.org>.
Guido van Rossuma0177771998-11-16 18:34:26 +000026
27--Guido van Rossum (home page: http://www.python.org/~guido/)