mirror of https://github.com/python/cpython
13205609c5
EditorWindow.py: + Added get_tabwidth & set_tabwidth "virtual text" methods, that get/set the widget's view of what a tab means. + Moved TK_TABWIDTH_DEFAULT here from AutoIndent. + Renamed Mark's get_selection_index to get_selection_indices (sorry, Mark, but the name was plain wrong <wink>). FormatParagraph.py: renamed use of get_selection_index. AutoIndent.py: + Moved TK_TABWIDTH_DEFAULT to EditorWindow. + Rewrote set_indentation_params to use new VTW get/set_tabwidth methods. + Changed smart_backspace_event to delete whitespace back to closest preceding virtual tab stop or real character (note that this may require inserting characters if backspacing over a tab!). + Nuked almost references to the selection tag, in favor of using get_selection_indices. The sole exception is in set_region, for which no "set_selection" abstraction has yet been agreed upon. + Had too much fun using the spiffy new features of the format-paragraph cmd. |
||
---|---|---|
.. | ||
Icons | ||
AutoExpand.py | ||
AutoIndent.py | ||
Bindings.py | ||
CallTipWindow.py | ||
CallTips.py | ||
ChangeLog | ||
ClassBrowser.py | ||
ColorDelegator.py | ||
Debugger.py | ||
Delegator.py | ||
EditorWindow.py | ||
FileList.py | ||
FormatParagraph.py | ||
FrameViewer.py | ||
GrepDialog.py | ||
IOBinding.py | ||
IdleHistory.py | ||
IdlePrefs.py | ||
MultiScrolledLists.py | ||
NEWS.txt | ||
ObjectBrowser.py | ||
OutputWindow.py | ||
PathBrowser.py | ||
Percolator.py | ||
PyParse.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 | ||
ToolTip.py | ||
TreeWidget.py | ||
UndoDelegator.py | ||
WidgetRedirector.py | ||
WindowList.py | ||
ZoomHeight.py | ||
__init__.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/)