Updated for 2.1b2 distribution.
[python/dscho.git] / Tools / idle / README.txt
blob3f91bdf88db1000bed5b4d4fd49652eb7734e232
1 IDLE 0.5 - February 2000
2 ------------------------
4 This is an early release of IDLE, my own attempt at a Tkinter-based
5 IDE for Python.
7 For news about this release, see the file NEWS.txt.  (For a more
8 detailed change log, see the file ChangeLog.)
10 FEATURES
12 IDLE has the following features:
14 - coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
16 - cross-platform: works on Windows and Unix (on the Mac, there are
17 currently problems with Tcl/Tk)
19 - multi-window text editor with multiple undo, Python colorizing
20 and many other features, e.g. smart indent and call tips
22 - Python shell window (a.k.a. interactive interpreter)
24 - debugger (not complete, but you can set breakpoints, view  and step)
26 USAGE
28 The main program is in the file "idle.py"; on Unix, you should be able
29 to run it by typing "./idle.py" to your shell.  On Windows, you can
30 run it by double-clicking it; you can use idle.pyw to avoid popping up
31 a DOS console.  If you want to pass command line arguments on Windows,
32 use the batch file idle.bat.
34 Command line arguments: files passed on the command line are executed,
35 not opened for editing, unless you give the -e command line option.
36 Try "./idle.py -h" to see other command line options.
38 IDLE requires Python 1.5.2, so it is currently only usable with a
39 Python 1.5.2 distribution.  (An older version of IDLE is distributed
40 with Python 1.5.2; you can drop this version on top of it.)
42 COPYRIGHT
44 IDLE is covered by the standard Python copyright notice
45 (http://www.python.org/doc/Copyright.html).
47 FEEDBACK
49 For feedback, please use the Python Bugs List
50 (http://www.python.org/search/search_bugs.html).
52 --Guido van Rossum (home page: http://www.python.org/~guido/)