cpython/Tools/idle
Guido van Rossum a3c253e83b Removing new files accidentally checked in on the trunk rather than on the
idlefork-merge-branch.
2003-04-29 11:27:16 +00:00
..
Icons
AutoExpand.py
AutoIndent.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
Bindings.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
CallTipWindow.py Remove unnecessary imports 2002-09-12 20:29:56 +00:00
CallTips.py Remove unnecessary imports 2002-09-12 20:29:56 +00:00
ChangeLog
ClassBrowser.py Kurt pointed out another method affected by the changes to pyclbr.py. 2003-01-22 13:29:00 +00:00
ColorDelegator.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
Debugger.py Remove unnecessary imports 2002-09-12 20:29:56 +00:00
Delegator.py
EditorWindow.py SF bug #652933 (for IdleFork): Open Module "math" Fails 2003-01-07 09:55:03 +00:00
FileList.py
FormatParagraph.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
FrameViewer.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
GrepDialog.py Remove unnecessary imports 2002-09-12 20:29:56 +00:00
IOBinding.py Remove unused local variables 2002-09-12 20:34:41 +00:00
IdleConf.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
IdleHistory.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
MANIFEST.in Support sdist. 2002-11-05 23:01:50 +00:00
MultiScrolledLists.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
MultiStatusBar.py
NEWS.txt
ObjectBrowser.py
OldStackViewer.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
OutputWindow.py Convert characters from the locale's encoding on output. 2002-08-10 12:22:12 +00:00
ParenMatch.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
PathBrowser.py
Percolator.py
PyParse.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
PyShell.py Remove unused local variables 2002-09-12 20:34:41 +00:00
README.txt Clarify the meaning of "requires Python 1.5.2". 2002-11-08 05:49:47 +00:00
RemoteInterp.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
ReplaceDialog.py Remove unnecessary imports 2002-09-12 20:36:01 +00:00
ScriptBinding.py Whitespace normalization. 2002-08-23 18:19:30 +00:00
ScrolledList.py
SearchBinding.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
SearchDialog.py
SearchDialogBase.py Use column= rather than col=; with Tk 8.4 col= no longer works. 2002-11-06 19:00:30 +00:00
SearchEngine.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
Separator.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
StackViewer.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
TODO.txt
ToolTip.py Remove unnecessary imports 2002-09-12 20:29:56 +00:00
TreeWidget.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
UndoDelegator.py Apply diff2.txt from SF patch http://www.python.org/sf/572113 2002-09-11 20:36:02 +00:00
WidgetRedirector.py
WindowList.py
ZoomHeight.py
__init__.py
config-mac.txt Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
config-unix.txt Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
config-win.txt Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
config.txt Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
eventparse.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
extend.txt
help.txt
idle
idle.bat
idle.py
idle.pyw
idlever.py
keydefs.py Add back files that were accidentally deleted on the trunk rather than 2003-04-29 11:15:38 +00:00
setup.py Properly find and install icons even if calling setup.py from the build dir. 2003-01-16 11:03:33 +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 or later, so it is currently only usable
with a Python 1.5.2 (or later) 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/)