blob: 3f91bdf88db1000bed5b4d4fd49652eb7734e232 [file] [log] [blame]
Guido van Rossum6d3be502000-02-15 17:16:40 +00001IDLE 0.5 - February 2000
2------------------------
Guido van Rossumb33f6121999-01-08 17:26:02 +00003
Guido van Rossum6e83cac2000-02-15 19:11:26 +00004This is an early release of IDLE, my own attempt at a Tkinter-based
5IDE for Python.
6
Guido van Rossumdce019e1999-02-17 17:37:24 +00007For news about this release, see the file NEWS.txt. (For a more
8detailed change log, see the file ChangeLog.)
Guido van Rossuma0177771998-11-16 18:34:26 +00009
Guido van Rossum6e83cac2000-02-15 19:11:26 +000010FEATURES
Guido van Rossuma0177771998-11-16 18:34:26 +000011
Guido van Rossum6e83cac2000-02-15 19:11:26 +000012IDLE has the following features:
Guido van Rossuma0177771998-11-16 18:34:26 +000013
Guido van Rossum6e83cac2000-02-15 19:11:26 +000014- coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
Guido van Rossum72fe08591998-11-16 18:37:42 +000015
Guido van Rossum6e83cac2000-02-15 19:11:26 +000016- cross-platform: works on Windows and Unix (on the Mac, there are
17currently problems with Tcl/Tk)
Guido van Rossuma0177771998-11-16 18:34:26 +000018
Guido van Rossum6e83cac2000-02-15 19:11:26 +000019- multi-window text editor with multiple undo, Python colorizing
20and many other features, e.g. smart indent and call tips
21
22- Python shell window (a.k.a. interactive interpreter)
23
24- debugger (not complete, but you can set breakpoints, view and step)
25
26USAGE
27
28The main program is in the file "idle.py"; on Unix, you should be able
29to run it by typing "./idle.py" to your shell. On Windows, you can
30run it by double-clicking it; you can use idle.pyw to avoid popping up
31a DOS console. If you want to pass command line arguments on Windows,
32use the batch file idle.bat.
33
34Command line arguments: files passed on the command line are executed,
35not opened for editing, unless you give the -e command line option.
36Try "./idle.py -h" to see other command line options.
37
38IDLE requires Python 1.5.2, so it is currently only usable with a
39Python 1.5.2 distribution. (An older version of IDLE is distributed
40with Python 1.5.2; you can drop this version on top of it.)
41
42COPYRIGHT
43
44IDLE is covered by the standard Python copyright notice
45(http://www.python.org/doc/Copyright.html).
46
47FEEDBACK
48
49For feedback, please use the Python Bugs List
50(http://www.python.org/search/search_bugs.html).
Guido van Rossuma0177771998-11-16 18:34:26 +000051
52--Guido van Rossum (home page: http://www.python.org/~guido/)