Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../lib64/python2..../idlelib
File: HISTORY.txt
IDLE History
[0] Fix | Delete
============
[1] Fix | Delete
[2] Fix | Delete
This file contains the release messages for previous IDLE releases.
[3] Fix | Delete
As you read on you go back to the dark ages of IDLE's history.
[4] Fix | Delete
[5] Fix | Delete
[6] Fix | Delete
What's New in IDLEfork 0.8.1?
[7] Fix | Delete
=============================
[8] Fix | Delete
[9] Fix | Delete
*Release date: 22-Jul-2001*
[10] Fix | Delete
[11] Fix | Delete
- New tarball released as a result of the 'revitalisation' of the IDLEfork
[12] Fix | Delete
project.
[13] Fix | Delete
[14] Fix | Delete
- This release requires python 2.1 or better. Compatibility with earlier
[15] Fix | Delete
versions of python (especially ancient ones like 1.5x) is no longer a
[16] Fix | Delete
priority in IDLEfork development.
[17] Fix | Delete
[18] Fix | Delete
- This release is based on a merging of the earlier IDLE fork work with current
[19] Fix | Delete
cvs IDLE (post IDLE version 0.8), with some minor additional coding by Kurt
[20] Fix | Delete
B. Kaiser and Stephen M. Gava.
[21] Fix | Delete
[22] Fix | Delete
- This release is basically functional but also contains some known breakages,
[23] Fix | Delete
particularly with running things from the shell window. Also the debugger is
[24] Fix | Delete
not working, but I believe this was the case with the previous IDLE fork
[25] Fix | Delete
release (0.7.1) as well.
[26] Fix | Delete
[27] Fix | Delete
- This release is being made now to mark the point at which IDLEfork is
[28] Fix | Delete
launching into a new stage of development.
[29] Fix | Delete
[30] Fix | Delete
- IDLEfork CVS will now be branched to enable further development and
[31] Fix | Delete
exploration of the two "execution in a remote process" patches submitted by
[32] Fix | Delete
David Scherer (David's is currently in IDLEfork) and GvR, while stabilisation
[33] Fix | Delete
and development of less heavyweight improvements (like user customisation)
[34] Fix | Delete
can continue on the trunk.
[35] Fix | Delete
[36] Fix | Delete
[37] Fix | Delete
What's New in IDLEfork 0.7.1?
[38] Fix | Delete
==============================
[39] Fix | Delete
[40] Fix | Delete
*Release date: 15-Aug-2000*
[41] Fix | Delete
[42] Fix | Delete
- First project tarball released.
[43] Fix | Delete
[44] Fix | Delete
- This was the first release of IDLE fork, which at this stage was a
[45] Fix | Delete
combination of IDLE 0.5 and the VPython idle fork, with additional changes
[46] Fix | Delete
coded by David Scherer, Peter Schneider-Kamp and Nicholas Riley.
[47] Fix | Delete
[48] Fix | Delete
[49] Fix | Delete
[50] Fix | Delete
IDLEfork 0.7.1 - 29 May 2000
[51] Fix | Delete
-----------------------------
[52] Fix | Delete
[53] Fix | Delete
David Scherer <dscherer@cmu.edu>
[54] Fix | Delete
[55] Fix | Delete
- This is a modification of the CVS version of IDLE 0.5, updated as of
[56] Fix | Delete
2000-03-09. It is alpha software and might be unstable. If it breaks, you
[57] Fix | Delete
get to keep both pieces.
[58] Fix | Delete
[59] Fix | Delete
- If you have problems or suggestions, you should either contact me or post to
[60] Fix | Delete
the list at http://www.python.org/mailman/listinfo/idle-dev (making it clear
[61] Fix | Delete
that you are using this modified version of IDLE).
[62] Fix | Delete
[63] Fix | Delete
- Changes:
[64] Fix | Delete
[65] Fix | Delete
- The ExecBinding module, a replacement for ScriptBinding, executes programs
[66] Fix | Delete
in a separate process, piping standard I/O through an RPC mechanism to an
[67] Fix | Delete
OnDemandOutputWindow in IDLE. It supports executing unnamed programs
[68] Fix | Delete
(through a temporary file). It does not yet support debugging.
[69] Fix | Delete
[70] Fix | Delete
- When running programs with ExecBinding, tracebacks will be clipped to
[71] Fix | Delete
exclude system modules. If, however, a system module calls back into the
[72] Fix | Delete
user program, that part of the traceback will be shown.
[73] Fix | Delete
[74] Fix | Delete
- The OnDemandOutputWindow class has been improved. In particular, it now
[75] Fix | Delete
supports a readline() function used to implement user input, and a
[76] Fix | Delete
scroll_clear() operation which is used to hide the output of a previous run
[77] Fix | Delete
by scrolling it out of the window.
[78] Fix | Delete
[79] Fix | Delete
- Startup behavior has been changed. By default IDLE starts up with just a
[80] Fix | Delete
blank editor window, rather than an interactive window. Opening a file in
[81] Fix | Delete
such a blank window replaces the (nonexistent) contents of that window
[82] Fix | Delete
instead of creating another window. Because of the need to have a
[83] Fix | Delete
well-known port for the ExecBinding protocol, only one copy of IDLE can be
[84] Fix | Delete
running. Additional invocations use the RPC mechanism to report their
[85] Fix | Delete
command line arguments to the copy already running.
[86] Fix | Delete
[87] Fix | Delete
- The menus have been reorganized. In particular, the excessively large
[88] Fix | Delete
'edit' menu has been split up into 'edit', 'format', and 'run'.
[89] Fix | Delete
[90] Fix | Delete
- 'Python Documentation' now works on Windows, if the win32api module is
[91] Fix | Delete
present.
[92] Fix | Delete
[93] Fix | Delete
- A few key bindings have been changed: F1 now loads Python Documentation
[94] Fix | Delete
instead of the IDLE help; shift-TAB is now a synonym for unindent.
[95] Fix | Delete
[96] Fix | Delete
- New modules:
[97] Fix | Delete
[98] Fix | Delete
ExecBinding.py Executes program through loader
[99] Fix | Delete
loader.py Bootstraps user program
[100] Fix | Delete
protocol.py RPC protocol
[101] Fix | Delete
Remote.py User-process interpreter
[102] Fix | Delete
spawn.py OS-specific code to start programs
[103] Fix | Delete
[104] Fix | Delete
- Files modified:
[105] Fix | Delete
[106] Fix | Delete
autoindent.py ( bindings tweaked )
[107] Fix | Delete
bindings.py ( menus reorganized )
[108] Fix | Delete
config.txt ( execbinding enabled )
[109] Fix | Delete
editorwindow.py ( new menus, fixed 'Python Documentation' )
[110] Fix | Delete
filelist.py ( hook for "open in same window" )
[111] Fix | Delete
formatparagraph.py ( bindings tweaked )
[112] Fix | Delete
idle.bat ( removed absolute pathname )
[113] Fix | Delete
idle.pyw ( weird bug due to import with same name? )
[114] Fix | Delete
iobinding.py ( open in same window, EOL convention )
[115] Fix | Delete
keydefs.py ( bindings tweaked )
[116] Fix | Delete
outputwindow.py ( readline, scroll_clear, etc )
[117] Fix | Delete
pyshell.py ( changed startup behavior )
[118] Fix | Delete
readme.txt ( <Recursion on file with id=1234567> )
[119] Fix | Delete
[120] Fix | Delete
[121] Fix | Delete
[122] Fix | Delete
IDLE 0.5 - February 2000 - Release Notes
[123] Fix | Delete
----------------------------------------
[124] Fix | Delete
[125] Fix | Delete
This is an early release of IDLE, my own attempt at a Tkinter-based
[126] Fix | Delete
IDE for Python.
[127] Fix | Delete
[128] Fix | Delete
(For a more detailed change log, see the file ChangeLog.)
[129] Fix | Delete
[130] Fix | Delete
FEATURES
[131] Fix | Delete
[132] Fix | Delete
IDLE has the following features:
[133] Fix | Delete
[134] Fix | Delete
- coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
[135] Fix | Delete
[136] Fix | Delete
- cross-platform: works on Windows and Unix (on the Mac, there are
[137] Fix | Delete
currently problems with Tcl/Tk)
[138] Fix | Delete
[139] Fix | Delete
- multi-window text editor with multiple undo, Python colorizing
[140] Fix | Delete
and many other features, e.g. smart indent and call tips
[141] Fix | Delete
[142] Fix | Delete
- Python shell window (a.k.a. interactive interpreter)
[143] Fix | Delete
[144] Fix | Delete
- debugger (not complete, but you can set breakpoints, view and step)
[145] Fix | Delete
[146] Fix | Delete
USAGE
[147] Fix | Delete
[148] Fix | Delete
The main program is in the file "idle.py"; on Unix, you should be able
[149] Fix | Delete
to run it by typing "./idle.py" to your shell. On Windows, you can
[150] Fix | Delete
run it by double-clicking it; you can use idle.pyw to avoid popping up
[151] Fix | Delete
a DOS console. If you want to pass command line arguments on Windows,
[152] Fix | Delete
use the batch file idle.bat.
[153] Fix | Delete
[154] Fix | Delete
Command line arguments: files passed on the command line are executed,
[155] Fix | Delete
not opened for editing, unless you give the -e command line option.
[156] Fix | Delete
Try "./idle.py -h" to see other command line options.
[157] Fix | Delete
[158] Fix | Delete
IDLE requires Python 1.5.2, so it is currently only usable with a
[159] Fix | Delete
Python 1.5.2 distribution. (An older version of IDLE is distributed
[160] Fix | Delete
with Python 1.5.2; you can drop this version on top of it.)
[161] Fix | Delete
[162] Fix | Delete
COPYRIGHT
[163] Fix | Delete
[164] Fix | Delete
IDLE is covered by the standard Python copyright notice
[165] Fix | Delete
(http://www.python.org/doc/Copyright.html).
[166] Fix | Delete
[167] Fix | Delete
[168] Fix | Delete
New in IDLE 0.5 (2/15/2000)
[169] Fix | Delete
---------------------------
[170] Fix | Delete
[171] Fix | Delete
Tons of stuff, much of it contributed by Tim Peters and Mark Hammond:
[172] Fix | Delete
[173] Fix | Delete
- Status bar, displaying current line/column (Moshe Zadka).
[174] Fix | Delete
[175] Fix | Delete
- Better stack viewer, using tree widget. (XXX Only used by Stack
[176] Fix | Delete
Viewer menu, not by the debugger.)
[177] Fix | Delete
[178] Fix | Delete
- Format paragraph now recognizes Python block comments and reformats
[179] Fix | Delete
them correctly (MH)
[180] Fix | Delete
[181] Fix | Delete
- New version of pyclbr.py parses top-level functions and understands
[182] Fix | Delete
much more of Python's syntax; this is reflected in the class and path
[183] Fix | Delete
browsers (TP)
[184] Fix | Delete
[185] Fix | Delete
- Much better auto-indent; knows how to indent the insides of
[186] Fix | Delete
multi-line statements (TP)
[187] Fix | Delete
[188] Fix | Delete
- Call tip window pops up when you type the name of a known function
[189] Fix | Delete
followed by an open parenthesis. Hit ESC or click elsewhere in the
[190] Fix | Delete
window to close the tip window (MH)
[191] Fix | Delete
[192] Fix | Delete
- Comment out region now inserts ## to make it stand out more (TP)
[193] Fix | Delete
[194] Fix | Delete
- New path and class browsers based on a tree widget that looks
[195] Fix | Delete
familiar to Windows users
[196] Fix | Delete
[197] Fix | Delete
- Reworked script running commands to be more intuitive: I/O now
[198] Fix | Delete
always goes to the *Python Shell* window, and raw_input() works
[199] Fix | Delete
correctly. You use F5 to import/reload a module: this adds the module
[200] Fix | Delete
name to the __main__ namespace. You use Control-F5 to run a script:
[201] Fix | Delete
this runs the script *in* the __main__ namespace. The latter also
[202] Fix | Delete
sets sys.argv[] to the script name
[203] Fix | Delete
[204] Fix | Delete
[205] Fix | Delete
New in IDLE 0.4 (4/7/99)
[206] Fix | Delete
------------------------
[207] Fix | Delete
[208] Fix | Delete
Most important change: a new menu entry "File -> Path browser", shows
[209] Fix | Delete
a 4-column hierarchical browser which lets you browse sys.path,
[210] Fix | Delete
directories, modules, and classes. Yes, it's a superset of the Class
[211] Fix | Delete
browser menu entry. There's also a new internal module,
[212] Fix | Delete
MultiScrolledLists.py, which provides the framework for this dialog.
[213] Fix | Delete
[214] Fix | Delete
[215] Fix | Delete
New in IDLE 0.3 (2/17/99)
[216] Fix | Delete
-------------------------
[217] Fix | Delete
[218] Fix | Delete
Most important changes:
[219] Fix | Delete
[220] Fix | Delete
- Enabled support for running a module, with or without the debugger.
[221] Fix | Delete
Output goes to a new window. Pressing F5 in a module is effectively a
[222] Fix | Delete
reload of that module; Control-F5 loads it under the debugger.
[223] Fix | Delete
[224] Fix | Delete
- Re-enable tearing off the Windows menu, and make a torn-off Windows
[225] Fix | Delete
menu update itself whenever a window is opened or closed.
[226] Fix | Delete
[227] Fix | Delete
- Menu items can now be have a checkbox (when the menu label starts
[228] Fix | Delete
with "!"); use this for the Debugger and "Auto-open stack viewer"
[229] Fix | Delete
(was: JIT stack viewer) menu items.
[230] Fix | Delete
[231] Fix | Delete
- Added a Quit button to the Debugger API.
[232] Fix | Delete
[233] Fix | Delete
- The current directory is explicitly inserted into sys.path.
[234] Fix | Delete
[235] Fix | Delete
- Fix the debugger (when using Python 1.5.2b2) to use canonical
[236] Fix | Delete
filenames for breakpoints, so these actually work. (There's still a
[237] Fix | Delete
lot of work to be done to the management of breakpoints in the
[238] Fix | Delete
debugger though.)
[239] Fix | Delete
[240] Fix | Delete
- Closing a window that is still colorizing now actually works.
[241] Fix | Delete
[242] Fix | Delete
- Allow dragging of the separator between the two list boxes in the
[243] Fix | Delete
class browser.
[244] Fix | Delete
[245] Fix | Delete
- Bind ESC to "close window" of the debugger, stack viewer and class
[246] Fix | Delete
browser. It removes the selection highlighting in regular text
[247] Fix | Delete
windows. (These are standard Windows conventions.)
[248] Fix | Delete
[249] Fix | Delete
[250] Fix | Delete
New in IDLE 0.2 (1/8/99)
[251] Fix | Delete
------------------------
[252] Fix | Delete
[253] Fix | Delete
Lots of changes; here are the highlights:
[254] Fix | Delete
[255] Fix | Delete
General:
[256] Fix | Delete
[257] Fix | Delete
- You can now write and configure your own IDLE extension modules; see
[258] Fix | Delete
extend.txt.
[259] Fix | Delete
[260] Fix | Delete
[261] Fix | Delete
File menu:
[262] Fix | Delete
[263] Fix | Delete
The command to open the Python shell window is now in the File menu.
[264] Fix | Delete
[265] Fix | Delete
[266] Fix | Delete
Edit menu:
[267] Fix | Delete
[268] Fix | Delete
New Find dialog with more options; replace dialog; find in files dialog.
[269] Fix | Delete
[270] Fix | Delete
Commands to tabify or untabify a region.
[271] Fix | Delete
[272] Fix | Delete
Command to format a paragraph.
[273] Fix | Delete
[274] Fix | Delete
[275] Fix | Delete
Debug menu:
[276] Fix | Delete
[277] Fix | Delete
JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer
[278] Fix | Delete
automaticall pops up when you get a traceback.
[279] Fix | Delete
[280] Fix | Delete
Windows menu:
[281] Fix | Delete
[282] Fix | Delete
Zoom height -- make the window full height.
[283] Fix | Delete
[284] Fix | Delete
[285] Fix | Delete
Help menu:
[286] Fix | Delete
[287] Fix | Delete
The help text now show up in a regular window so you can search and
[288] Fix | Delete
even edit it if you like.
[289] Fix | Delete
[290] Fix | Delete
[291] Fix | Delete
[292] Fix | Delete
IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98.
[293] Fix | Delete
[294] Fix | Delete
======================================================================
[295] Fix | Delete
[296] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function