cpython/Tools/idle
Tim Peters 32b069cf54 SF bug 546078: IDLE calltips cause application error.
Assorted crashes on Windows and Linux when trying to display a very
long calltip, most likely a Tk bug.  Wormed around by clamping the
calltip display to a maximum of 79 characters (why 79? why not ...).

Bugfix candidate, for all Python releases.
2002-04-22 18:43:49 +00:00
..
Icons use -kb on idle/Icons/minusnode.gif ("cvs up" kept checking it out all 2002-03-18 21:43:04 +00:00
AutoExpand.py
AutoIndent.py smart_backspace_event(): remove now-pointless int() call. 2002-01-23 16:57:55 +00:00
Bindings.py
CallTipWindow.py SF bug 546078: IDLE calltips cause application error. 2002-04-22 18:43:49 +00:00
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 Fix by Edward K Ream to make breakpoints work on Windows: insert a 2002-02-25 23:11:03 +00:00
Delegator.py
EditorWindow.py Patch #540583: Open MS Help Docs if available. 2002-04-14 10:30:51 +00:00
FileList.py
FormatParagraph.py
FrameViewer.py
GrepDialog.py
IOBinding.py Provisional fix for writefile() [SF bug # 541730]. 2002-04-15 00:19:12 +00:00
IdleConf.py
IdleHistory.py
MultiScrolledLists.py
MultiStatusBar.py
NEWS.txt
ObjectBrowser.py Convert a pile of obvious "yes/no" functions to return bool. 2002-04-04 22:55:58 +00:00
OldStackViewer.py
OutputWindow.py Patch #520483: Make IDLE OutputWindow handle Unicode. 2002-02-23 22:39:37 +00:00
ParenMatch.py
PathBrowser.py
Percolator.py
PyParse.py
PyShell.py Convert a pile of obvious "yes/no" functions to return bool. 2002-04-04 22:55:58 +00:00
README.txt
RemoteInterp.py
ReplaceDialog.py Convert a pile of obvious "yes/no" functions to return bool. 2002-04-04 22:55:58 +00:00
ScriptBinding.py Fix for SF bug #448835. 2001-08-07 17:15:36 +00:00
ScrolledList.py
SearchBinding.py
SearchDialog.py Convert a pile of obvious "yes/no" functions to return bool. 2002-04-04 22:55:58 +00:00
SearchDialogBase.py
SearchEngine.py
Separator.py
StackViewer.py
TODO.txt
ToolTip.py
TreeWidget.py Finally fix SF bug #441172, using a variant of patch ##443626: 2001-08-11 04:37:07 +00:00
UndoDelegator.py
WidgetRedirector.py
WindowList.py
ZoomHeight.py
__init__.py
config-mac.txt
config-unix.txt
config-win.txt
config.txt
eventparse.py
extend.txt
help.txt Update outdated text about how to fix the font. 2001-10-08 22:49:12 +00:00
idle
idle.bat
idle.py
idle.pyw
idlever.py
keydefs.py
setup.py Patch #422471: Install IDLE Help File 2001-08-08 20:26:14 +00:00
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/)