cpython/Tools/idle
Guido van Rossum 4269601f5c Amazing. A very subtle change in policy in descr-branch actually
found a bug here.  Here's the deal:

Class PyShell derives from class OutputWindow.  Method PyShell.close()
wants to invoke its parent method, but because PyShell long ago was
inherited from class PyShellEditorWindow, it invokes
PyShelEditorWindow.close(self).  Now, class PyShellEditorWindow itself
derives from class OutputWindow, and inherits the close() method from
there without overriding it.  Under the old rules,
PyShellEditorWindow.close would return an unbound method restricted to
the class that defined the implementation of close(), which was
OutputWindow.close.  Under the new rules, the unbound method is
restricted to the class whose method was requested, that is
PyShellEditorWindow, and this was correctly trapped as an error.
2001-07-06 20:26:31 +00:00
..
Icons Fixed snake logo and minus image by Daniel Calvelo. 2000-12-27 22:26:08 +00:00
__init__.py
AutoExpand.py Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2). 2001-01-02 18:28:52 +00:00
AutoIndent.py
Bindings.py
CallTips.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
CallTipWindow.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ChangeLog
ClassBrowser.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ColorDelegator.py Don't use __debug__ as if it were some module global. Use DEBUG 2001-03-22 17:27:13 +00:00
config-unix.txt
config-win.txt
config.txt
Debugger.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
Delegator.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
EditorWindow.py Remove legacy support for the BrowserControl module; the webbrowser 2001-04-18 18:42:48 +00:00
eventparse.py
extend.txt Quick update to the extension mechanism (extend.py is gone, long live 2001-06-04 21:21:11 +00:00
FileList.py Delete goodname() method, which is unused. 2001-05-12 12:11:36 +00:00
FormatParagraph.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
FrameViewer.py
GrepDialog.py
help.txt This still mentioned IdlePrefs.py as the place to edit color 2001-01-19 03:30:58 +00:00
idle Allow installation of IDLE via distutils (patch #103138). 2001-01-28 11:01:50 +00:00
idle.bat Get rid of hardcoded Python path (can't guess where the user installed 2001-03-10 21:48:24 +00:00
idle.py Move the action of loading the configuration to the IdleConf module 2001-05-12 12:18:10 +00:00
idle.pyw
IdleConf.py Move the action of loading the configuration to the IdleConf module 2001-05-12 12:18:10 +00:00
IdleHistory.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
idlever.py Make this IDLE version 0.8. (We have to skip 0.7 because that was a 2001-03-22 17:37:52 +00:00
IOBinding.py move "from Tkinter import *" to module level 2001-02-02 20:07:46 +00:00
keydefs.py Make copy, cut and paste events case insensitive. Reported by Patrick 2001-06-12 00:30:33 +00:00
MultiScrolledLists.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
MultiStatusBar.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
NEWS.txt
ObjectBrowser.py Make the test program work outside IDLE. 2001-01-02 21:22:03 +00:00
OldStackViewer.py
OutputWindow.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ParenMatch.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
PathBrowser.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
Percolator.py move "from Tkinter import *" to module level 2001-02-02 20:07:46 +00:00
PyParse.py Taught IDLE's autoident parser that "yield" is a keyword that begins a 2001-06-19 00:28:47 +00:00
PyShell.py Amazing. A very subtle change in policy in descr-branch actually 2001-07-06 20:26:31 +00:00
README.txt
RemoteInterp.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ReplaceDialog.py Temporary fix for Bug #114821. 2000-09-19 20:51:17 +00:00
ScriptBinding.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ScrolledList.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
SearchBinding.py
SearchDialog.py
SearchDialogBase.py
SearchEngine.py
Separator.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
setup.py Whitespace normalization. 2001-02-09 21:23:21 +00:00
StackViewer.py Refactored, with some future plans in mind. 2001-05-12 12:30:04 +00:00
testcode.py
TODO.txt Add IDLE wish: access items of arrays 2000-10-25 21:18:12 +00:00
ToolTip.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
TreeWidget.py
UndoDelegator.py
WidgetRedirector.py
WindowList.py Whitespace normalization. 2001-01-17 08:48:39 +00:00
ZoomHeight.py

IDLE 0.5 - February 2000
------------------------

This is an early release of IDLE, my own attempt at a Tkinter-based
IDE for Python.

For news about this release, see the file NEWS.txt.  (For a more
detailed change log, see the file ChangeLog.)

FEATURES

IDLE has the following features:

- coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)

- cross-platform: works on Windows and Unix (on the Mac, there are
currently problems with Tcl/Tk)

- multi-window text editor with multiple undo, Python colorizing
and many other features, e.g. smart indent and call tips

- Python shell window (a.k.a. interactive interpreter)

- debugger (not complete, but you can set breakpoints, view  and step)

USAGE

The main program is in the file "idle.py"; on Unix, you should be able
to run it by typing "./idle.py" to your shell.  On Windows, you can
run it by double-clicking it; you can use idle.pyw to avoid popping up
a DOS console.  If you want to pass command line arguments on Windows,
use the batch file idle.bat.

Command line arguments: files passed on the command line are executed,
not opened for editing, unless you give the -e command line option.
Try "./idle.py -h" to see other command line options.

IDLE requires Python 1.5.2, so it is currently only usable with a
Python 1.5.2 distribution.  (An older version of IDLE is distributed
with Python 1.5.2; you can drop this version on top of it.)

COPYRIGHT

IDLE is covered by the standard Python copyright notice
(http://www.python.org/doc/Copyright.html).

FEEDBACK

For feedback, please use the Python Bugs List
(http://www.python.org/search/search_bugs.html).

--Guido van Rossum (home page: http://www.python.org/~guido/)