cpython/Tools/idle
Guido van Rossum 77f6ccd1f7 The test for re.engine was misfiring because re.engine is no longer
defined and the default was "pre" instead of "sre".  Give up on 1.5.2
compatibility, hardcode the sre solution.  However, this XXX comment
still applies, AFAIK:
        # XXX This code depends on internals of the regular expression
        # engine!  There's no standard API to do a substitution when you
        # have already found the match.  One should be added.
2002-07-24 01:49:16 +00:00
..
Icons
AutoExpand.py
AutoIndent.py
Bindings.py Add primitive printing support for Unix and Windows. 2002-06-10 18:52:02 +00:00
CallTipWindow.py
CallTips.py Improve handling of docstrings. I had feared this was a case of 2001-09-16 02:19:49 +00:00
ChangeLog
ClassBrowser.py
ColorDelegator.py
Debugger.py
Delegator.py
EditorWindow.py
FileList.py
FormatParagraph.py
FrameViewer.py
GrepDialog.py
IOBinding.py Add primitive printing support for Unix and Windows. 2002-06-10 18:52:02 +00:00
IdleConf.py
IdleHistory.py
MultiScrolledLists.py
MultiStatusBar.py
NEWS.txt
ObjectBrowser.py
OldStackViewer.py
OutputWindow.py
ParenMatch.py
PathBrowser.py
Percolator.py
PyParse.py
PyShell.py
README.txt
RemoteInterp.py
ReplaceDialog.py The test for re.engine was misfiring because re.engine is no longer 2002-07-24 01:49:16 +00:00
ScriptBinding.py
ScrolledList.py
SearchBinding.py
SearchDialog.py
SearchDialogBase.py Checking in IDLE 0.2. 1999-01-02 21:28:54 +00:00
SearchEngine.py
Separator.py
StackViewer.py
TODO.txt
ToolTip.py
TreeWidget.py
UndoDelegator.py
WidgetRedirector.py
WindowList.py
ZoomHeight.py
__init__.py
config-mac.txt
config-unix.txt Add primitive printing support for Unix and Windows. 2002-06-10 18:52:02 +00:00
config-win.txt Add primitive printing support for Unix and Windows. 2002-06-10 18:52:02 +00:00
config.txt
eventparse.py
extend.txt Quick update to the extension mechanism (extend.py is gone, long live 2001-06-04 21:21:11 +00:00
help.txt
idle
idle.bat
idle.py
idle.pyw
idlever.py
keydefs.py Add primitive printing support for Unix and Windows. 2002-06-10 18:52:02 +00:00
setup.py
testcode.py

README.txt

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/)