mirror of https://github.com/python/cpython.git
eeb88076e7
idle.py -e file ... -- to edit files idle.py script arg ... -- to run a script idle.py -c cmd arg ... -- to run a command Other options, see also the usage message (also new!) for more details: -d -- enable debugger -s -- run $IDLESTARTUP or $PYTHONSTARTUP -t title -- set Python Shell window's title sys.argv is set accordingly, unless -e is used. sys.path is absolutized, and all relevant paths are inserted into it. Other changes: - the environment in which commands are executed is now the __main__ module - explicitly save sys.stdout etc., don't restore from sys.__stdout__ - new interpreter methods execsource(), execfile(), stuffsource() - a few small nits |
||
---|---|---|
.. | ||
AutoExpand.py | ||
AutoIndent.py | ||
Bindings.py | ||
ChangeLog | ||
ClassBrowser.py | ||
ColorDelegator.py | ||
Debugger.py | ||
Delegator.py | ||
EditorWindow.py | ||
FileList.py | ||
FormatParagraph.py | ||
FrameViewer.py | ||
GrepDialog.py | ||
History.py | ||
IOBinding.py | ||
IdleHistory.py | ||
IdlePrefs.py | ||
MultiScrolledLists.py | ||
NEWS.txt | ||
OutputWindow.py | ||
PathBrowser.py | ||
Percolator.py | ||
PyShell.py | ||
README.txt | ||
ReplaceDialog.py | ||
ScriptBinding.py | ||
ScrolledList.py | ||
SearchBinding.py | ||
SearchDialog.py | ||
SearchDialogBase.py | ||
SearchEngine.py | ||
Separator.py | ||
StackViewer.py | ||
TODO.txt | ||
UndoDelegator.py | ||
WidgetRedirector.py | ||
WindowList.py | ||
ZoomHeight.py | ||
eventparse.py | ||
extend.py | ||
extend.txt | ||
help.txt | ||
idle.bat | ||
idle.py | ||
idle.pyw | ||
idlever.py | ||
keydefs.py | ||
tabnanny.py | ||
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/)