cpython/Tools/idle
Guido van Rossum dd58416f39 Don't crash when sys.path contains an empty string. 1999-03-11 23:21:23 +00:00
..
AutoExpand.py
AutoIndent.py
Bindings.py Add PathBrowser to File module 1999-03-10 05:18:02 +00:00
ChangeLog Oh, why not. Checking in the Emacs-generated change log. 1999-02-17 16:20:08 +00:00
ClassBrowser.py Use a HSeparator between the classes and the items. 1999-01-11 14:46:06 +00:00
ColorDelegator.py Hack to close a window that is colorizing. 1999-01-12 22:09:57 +00:00
Debugger.py Add canonic() function -- for brand new bdb.py feature. 1999-02-01 19:35:33 +00:00
Delegator.py
EditorWindow.py Add PathBrowser to File module 1999-03-10 05:18:02 +00:00
FileList.py Make sure the Tcl variables are shared between windows. 1999-01-28 22:24:30 +00:00
FormatParagraph.py Change paragraph width limit to 70 (like Emacs M-Q). 1999-01-07 00:12:15 +00:00
FrameViewer.py
GrepDialog.py
History.py
IOBinding.py
IdleHistory.py
MultiScrolledLists.py New utility: multiple scrolled lists in parallel 1999-03-10 05:13:29 +00:00
NEWS.txt News in 0.3. 1999-02-17 22:47:41 +00:00
OutputWindow.py
PathBrowser.py Don't crash when sys.path contains an empty string. 1999-03-11 23:21:23 +00:00
Percolator.py
PyShell.py Add current dir or paths of file args to sys.path. 1999-02-01 23:06:17 +00:00
README.txt Bump version to 0.3. 1999-02-17 17:37:24 +00:00
ReplaceDialog.py
ScriptBinding.py Only pop up the stack viewer when requested in the Debug menu. 1999-02-16 22:34:17 +00:00
ScrolledList.py - White background. 1999-03-10 05:10:49 +00:00
SearchBinding.py Got rid of debug print statement in goto_line_event(). 1999-01-11 14:49:00 +00:00
SearchDialog.py When find_again() finds exactly the current selection, it's a failure. 1999-01-28 19:04:01 +00:00
SearchDialogBase.py
SearchEngine.py
Separator.py Vladimir Marangozov's patch: 1999-01-12 22:09:18 +00:00
StackViewer.py Protect against accessing an empty stack. 1999-02-01 19:34:53 +00:00
TODO.txt Restructured a bit. 1999-02-08 22:27:18 +00:00
UndoDelegator.py
WidgetRedirector.py
WindowList.py When deleting, call the callbacks *after* deleting the window from our list! 1999-02-17 17:34:25 +00:00
ZoomHeight.py Use only the height to decide whether to zoom in or out. 1999-01-29 20:44:45 +00:00
eventparse.py
extend.py Added ScriptBinding to standard bindings. 1999-01-09 05:00:59 +00:00
extend.txt
help.txt Updated a bunch of things (it was mostly still 0.1!) 1999-01-09 21:57:56 +00:00
idle.bat
idle.py Rename idle -> idle.py 1999-01-28 18:50:31 +00:00
idle.pyw
idlever.py Bump version to 0.3. 1999-02-17 17:37:24 +00:00
keydefs.py Ran eventparse.py again. 1999-01-04 16:35:02 +00:00
tabnanny.py
testcode.py Renamed test.py to testcode.py so one can import Python's 1999-01-12 22:14:34 +00:00

README.txt

IDLE 0.3 - 17 February 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 beta distribution (luckily, IDLE is bundled with Python
1.5.2).

Please send feedback to the Python newsgroup, comp.lang.python.

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