cpython/Tools/idle
Guido van Rossum 7f2c9d3890 A few new TODO entries. 1999-09-09 14:16:02 +00:00
..
Icons Missed a few. 1999-06-01 18:23:19 +00:00
AutoExpand.py
AutoIndent.py Tim Peters smart.patch: 1999-06-11 15:03:00 +00:00
Bindings.py Add Python Documentation entry to Help menu. 1999-08-26 23:06:22 +00:00
CallTipWindow.py Mark Hammond writes: Tim's suggestion of copying the font for the 1999-06-10 14:19:46 +00:00
CallTips.py Add close() method that breaks a cycle. 1999-06-25 16:02:22 +00:00
ChangeLog
ClassBrowser.py Destroy the tree when closing. 1999-06-25 17:08:19 +00:00
ColorDelegator.py
Debugger.py Break cycle on close. 1999-06-25 17:25:22 +00:00
Delegator.py
EditorWindow.py Find the help.txt file relative to __file__ or ".", not in sys.path. 1999-08-26 23:06:05 +00:00
FileList.py
FormatParagraph.py Add close() method that breaks a cycle. 1999-06-25 16:02:22 +00:00
FrameViewer.py
GrepDialog.py Enclose pattern in quotes in status message. 1999-06-03 14:25:49 +00:00
IOBinding.py Add close() method that breaks a cycle. 1999-06-25 16:02:22 +00:00
IdleHistory.py Changes by Mark Hammond: (1) support optional output_sep argument to 1999-06-02 12:06:47 +00:00
IdlePrefs.py Make the color for stderr red (i.e. the standard warning/danger/stop 1999-07-10 13:17:35 +00:00
MultiScrolledLists.py
NEWS.txt
ObjectBrowser.py Remove unnecessary reference to pyclbr from test() code. 1999-06-07 15:38:40 +00:00
OutputWindow.py
PathBrowser.py Rewritten based on TreeWidget.py 1999-06-01 18:21:31 +00:00
Percolator.py Add close() method that breaks cycles. 1999-06-25 16:04:38 +00:00
PyParse.py Tim Peters: 1999-06-07 14:28:14 +00:00
PyShell.py Close debugger when closing. This may break a cycle. 1999-06-25 17:26:34 +00:00
README.txt
ReplaceDialog.py Hmm... Tim didn't turn "replace all" into a single undo block. 1999-06-08 13:06:07 +00:00
ScriptBinding.py
ScrolledList.py
SearchBinding.py
SearchDialog.py
SearchDialogBase.py
SearchEngine.py
Separator.py
StackViewer.py
TODO.txt A few new TODO entries. 1999-09-09 14:16:02 +00:00
ToolTip.py As yet unused code for tool tips. 1999-06-01 18:19:02 +00:00
TreeWidget.py Moshe noticed an inconsistency in his comment, so I'm rephrasing it to 1999-08-11 14:55:43 +00:00
UndoDelegator.py
WidgetRedirector.py Add unregister() method. 1999-06-25 16:03:19 +00:00
WindowList.py
ZoomHeight.py
__init__.py
eventparse.py
extend.py Might as well enable CallTips by default. 1999-06-04 19:21:19 +00:00
extend.txt
help.txt
idle.bat
idle.py
idle.pyw
idlever.py
keydefs.py
tabnanny.py Mark Hammond writes: 1999-07-30 17:48:20 +00:00
testcode.py

README.txt

IDLE 0.4 - 7 April 1999
-----------------------

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

This is an early release of IDLE, my own attempt at a Tkinter-based
IDE for Python.  It has the following features:

- 100% pure Python
- multi-window text editor with multiple undo and Python colorizing
- Python shell (a.k.a. interactive interpreter) window subclass
- debugger (not complete, but you can set breakpoints and step)
- works on Windows and Unix (probably works on Mac too)

The main program is in the file "idle"; on Windows you can use idle.pyw
to avoid popping up a DOS console.  Any arguments passed are interpreted
as files that will be opened for editing.

IDLE requires Python 1.5.2, so it is currently only usable with the
Python 1.5.2 distribution (luckily, IDLE is bundled with Python
1.5.2).

Please send feedback to the Python newsgroup, comp.lang.python, and cc
me <guido@python.org>.

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