blob: 23366778a04f920bf11e324774af9a137892e4f8 [file] [log] [blame]
Kurt B. Kaiser085ce5a2002-12-31 17:57:44 +00001IDLE History
2============
3
4This file contains the release messages for previous IDLE releases.
5As you read on you go back to the dark ages of IDLE's history.
6
7
8IDLE fork 0.7.1 - 29 May 2000
9-----------------------------
10
11 David Scherer <dscherer@cmu.edu>
12
13This is a modification of the CVS version of IDLE 0.5, updated as of
142000-03-09. It is alpha software and might be unstable. If it breaks,
15you get to keep both pieces.
16
17If you have problems or suggestions, you should either contact me or
18post to the list at http://www.python.org/mailman/listinfo/idle-dev
19(making it clear that you are using this modified version of IDLE).
20
21Changes:
22
23 The ExecBinding module, a replacement for ScriptBinding, executes
24 programs in a separate process, piping standard I/O through an RPC
25 mechanism to an OnDemandOutputWindow in IDLE. It supports executing
26 unnamed programs (through a temporary file). It does not yet support
27 debugging.
28
29 When running programs with ExecBinding, tracebacks will be clipped
30 to exclude system modules. If, however, a system module calls back
31 into the user program, that part of the traceback will be shown.
32
33 The OnDemandOutputWindow class has been improved. In particular,
34 it now supports a readline() function used to implement user input,
35 and a scroll_clear() operation which is used to hide the output of
36 a previous run by scrolling it out of the window.
37
38 Startup behavior has been changed. By default IDLE starts up with
39 just a blank editor window, rather than an interactive window. Opening
40 a file in such a blank window replaces the (nonexistent) contents of
41 that window instead of creating another window. Because of the need to
42 have a well-known port for the ExecBinding protocol, only one copy of
43 IDLE can be running. Additional invocations use the RPC mechanism to
44 report their command line arguments to the copy already running.
45
46 The menus have been reorganized. In particular, the excessively large
47 'edit' menu has been split up into 'edit', 'format', and 'run'.
48
49 'Python Documentation' now works on Windows, if the win32api module is
50 present.
51
52 A few key bindings have been changed: F1 now loads Python Documentation
53 instead of the IDLE help; shift-TAB is now a synonym for unindent.
54
55New modules:
56 ExecBinding.py Executes program through loader
57 loader.py Bootstraps user program
58 protocol.py RPC protocol
59 Remote.py User-process interpreter
60 spawn.py OS-specific code to start programs
61
62Files modified:
63 autoindent.py ( bindings tweaked )
64 bindings.py ( menus reorganized )
65 config.txt ( execbinding enabled )
66 editorwindow.py ( new menus, fixed 'Python Documentation' )
67 filelist.py ( hook for "open in same window" )
68 formatparagraph.py ( bindings tweaked )
69 idle.bat ( removed absolute pathname )
70 idle.pyw ( weird bug due to import with same name? )
71 iobinding.py ( open in same window, EOL convention )
72 keydefs.py ( bindings tweaked )
73 outputwindow.py ( readline, scroll_clear, etc )
74 pyshell.py ( changed startup behavior )
75 readme.txt ( <Recursion on file with id=1234567> )
76
77
78IDLE 0.5 - February 2000
79------------------------
80
81This is an early release of IDLE, my own attempt at a Tkinter-based
82IDE for Python.
83
84For news about this release, see the file NEWS.txt. (For a more
85detailed change log, see the file ChangeLog.)
86
87FEATURES
88
89IDLE has the following features:
90
91- coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
92
93- cross-platform: works on Windows and Unix (on the Mac, there are
94currently problems with Tcl/Tk)
95
96- multi-window text editor with multiple undo, Python colorizing
97and many other features, e.g. smart indent and call tips
98
99- Python shell window (a.k.a. interactive interpreter)
100
101- debugger (not complete, but you can set breakpoints, view and step)
102
103USAGE
104
105The main program is in the file "idle.py"; on Unix, you should be able
106to run it by typing "./idle.py" to your shell. On Windows, you can
107run it by double-clicking it; you can use idle.pyw to avoid popping up
108a DOS console. If you want to pass command line arguments on Windows,
109use the batch file idle.bat.
110
111Command line arguments: files passed on the command line are executed,
112not opened for editing, unless you give the -e command line option.
113Try "./idle.py -h" to see other command line options.
114
115IDLE requires Python 1.5.2, so it is currently only usable with a
116Python 1.5.2 distribution. (An older version of IDLE is distributed
117with Python 1.5.2; you can drop this version on top of it.)
118
119COPYRIGHT
120
121IDLE is covered by the standard Python copyright notice
122(http://www.python.org/doc/Copyright.html).