Credit Nir Aides for r77288
[python.git] / Lib / idlelib / NEWS.txt
blob25318e1c5d8267eb3eaf939e6f4c2529751c5ff8
1 What's New in IDLE 2.7a0?
2 =========================
4 *Release date: XX-XXX-2010*
6 - idle.py modified and simplified to better support developing experimental
7   versions of IDLE which are not installed in the standard location.
9 - OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
10   file paths containing spaces.  Bug 5559.
12 - Windows: Version string for the .chm help file changed, file not being
13   accessed  Patch 5783 Guilherme Polo
15 - Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
16   David Scherer for suggesting the use of an ephemeral port for the GUI.
17   Patch 1529142 Weeble.
19 - Remove port spec from run.py and fix bug where subprocess fails to
20   extract port from command line when warnings are present.
22 - Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
23   mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
24   
25 - Issue #3549: On MacOS the preferences menu was not present
28 What's New in IDLE 2.6?
29 =======================
31 *Release date: 01-Oct-2008*
33 - Issue #2665: On Windows, an IDLE installation upgraded from an old version
34   would not start if a custom theme was defined.
36 - Home / Control-A toggles between left margin and end of leading white
37   space.  Patch 1196903 Jeff Shute.
39 - Improved AutoCompleteWindow logic.  Patch 2062 Tal Einat.
41 - Autocompletion of filenames now support alternate separators, e.g. the
42   '/' char on Windows.  Patch 2061 Tal Einat.
44 What's New in IDLE 2.6a1?
45 =========================
47 *Release date: 29-Feb-2008*
49 - Configured selection highlighting colors were ignored; updating highlighting
50   in the config dialog would cause non-Python files to be colored as if they
51   were Python source; improve use of ColorDelagator.  Patch 1334. Tal Einat.
53 - ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.
55 - There was an error on exit if no sys.exitfunc was defined. Issue 1647.
57 - Could not open files in .idlerc directory if latter was hidden on Windows.
58   Issue 1743, Issue 1862.
60 - Configure Dialog: improved layout for keybinding.  Patch 1457 Tal Einat.
62 - tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
63   of tabs.  Patch 1612746 Tal Einat.
65 - Add confirmation dialog before printing.  Patch 1717170 Tal Einat.
67 - Show paste position if > 80 col.  Patch 1659326 Tal Einat.
69 - Update cursor color without restarting.  Patch 1725576 Tal Einat.
71 - Allow keyboard interrupt only when user code is executing in subprocess.
72   Patch 1225 Tal Einat (reworked from IDLE-Spoon).
74 - configDialog cleanup. Patch 1730217 Tal Einat.
76 - textView cleanup. Patch 1718043 Tal Einat.
78 - Clean up EditorWindow close.
80 - Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
82 - OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
84 - Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
85   option in config-extensions w/o a value. Patch #1672481, Tal Einat
87 - Corrected some bugs in AutoComplete.  Also, Page Up/Down in ACW implemented;
88   mouse and cursor selection in ACWindow implemented; double Tab inserts
89   current selection and closes ACW (similar to double-click and Return); scroll
90   wheel now works in ACW.  Added AutoComplete instructions to IDLE Help.
92 - AutoCompleteWindow moved below input line, will move above if there
93   isn't enough space.  Patch 1621265 Tal Einat
95 - Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
96   Suggested solution by Christos Georgiou, Bug 791968.
98 - Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
100 - Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
102 - Patch #1362975: Rework CodeContext indentation algorithm to
103   avoid hard-coding pixel widths.
105 - Bug #813342: Start the IDLE subprocess with -Qnew if the parent
106   is started with that option.
108 - Honor the "Cancel" action in the save dialog (Debian bug #299092)
110 - Some syntax errors were being caught by tokenize during the tabnanny
111   check, resulting in obscure error messages.  Do the syntax check
112   first.  Bug 1562716, 1562719
114 - IDLE's version number takes a big jump to match the version number of
115   the Python release of which it's a part.
118 What's New in IDLE 1.2?
119 =======================
121 *Release date: 19-SEP-2006*
124 What's New in IDLE 1.2c1?
125 =========================
127 *Release date: 17-AUG-2006*
129 - File menu hotkeys: there were three 'p' assignments.  Reassign the
130   'Save Copy As' and 'Print' hotkeys to 'y' and 't'.  Change the
131   Shell hotkey from 's' to 'l'.
133 - IDLE honors new quit() and exit() commands from site.py Quitter() object.
134   Patch 1540892, Jim Jewett
136 - The 'with' statement is now a Code Context block opener.
137   Patch 1540851, Jim Jewett
139 - Retrieval of previous shell command was not always preserving indentation
140   (since 1.2a1) Patch 1528468 Tal Einat.
142 - Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
144 - ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
146 - When used w/o subprocess, all exceptions were preceded by an error
147   message claiming they were IDLE internal errors (since 1.2a1).
149 What's New in IDLE 1.2b3?
150 =========================
152 *Release date: 03-AUG-2006*
154 - Bug #1525817: Don't truncate short lines in IDLE's tool tips.
156 - Bug #1517990: IDLE keybindings on MacOS X now work correctly
158 - Bug #1517996: IDLE now longer shows the default Tk menu when a
159   path browser, class browser or debugger is the frontmost window on MacOS X
161 - EditorWindow.test() was failing.  Bug 1417598
163 - EditorWindow failed when used stand-alone if sys.ps1 not set.
164   Bug 1010370 Dave Florek
166 - Tooltips failed on new-syle class __init__ args.  Bug 1027566 Loren Guthrie
168 - Avoid occasional failure to detect closing paren properly.
169   Patch 1407280 Tal Einat
171 - Rebinding Tab key was inserting 'tab' instead of 'Tab'.  Bug 1179168.
173 - Colorizer now handles #<builtin> correctly, also unicode strings and
174   'as' keyword in comment directly following import command. Closes 1325071.
175   Patch 1479219 Tal Einat
177 What's New in IDLE 1.2b2?
178 =========================
180 *Release date: 11-JUL-2006*
182 What's New in IDLE 1.2b1?
183 =========================
185 *Release date: 20-JUN-2006*
187 What's New in IDLE 1.2a2?
188 =========================
190 *Release date: 27-APR-2006*
192 What's New in IDLE 1.2a1?
193 =========================
195 *Release date: 05-APR-2006*
197 - Patch #1162825: Support non-ASCII characters in IDLE window titles.
199 - Source file f.flush() after writing; trying to avoid lossage if user
200   kills GUI.
202 - Options / Keys / Advanced dialog made functional.  Also, allow binding
203   of 'movement' keys.
205 - 'syntax' patch adds improved calltips and a new class attribute listbox.
206   MultiCall module allows binding multiple actions to an event.
207   Patch 906702 Noam Raphael
209 - Better indentation after first line of string continuation.
210   IDLEfork Patch 681992, Noam Raphael
212 - Fixed CodeContext alignment problem, following suggestion from Tal Einat.
214 - Increased performance in CodeContext extension  Patch 936169 Noam Raphael
216 - Mac line endings were incorrect when pasting code from some browsers
217   when using X11 and the Fink distribution.  Python Bug 1263656.
219 - <Enter> when cursor is on a previous command retrieves that command.  Instead
220   of replacing the input line, the previous command is now appended to the
221   input line. Indentation is preserved, and undo is enabled.
222   Patch 1196917  Jeff Shute
224 - Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
225   the Untabify command.
227 - Corrected "tab/space" Error Dialog to show correct menu for Untabify.
228   Patch 1196980 Jeff Shute
230 - New files are colorized by default, and colorizing is removed when
231   saving as non-Python files. Patch 1196895 Jeff Shute
232   Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
234 - Improve subprocess link error notification.
236 - run.py: use Queue's blocking feature instead of sleeping in the main
237   loop.  Patch # 1190163 Michiel de Hoon
239 - Add config-main option to make the 'history' feature non-cyclic.
240   Default remains cyclic.  Python Patch 914546 Noam Raphael.
242 - Removed ability to configure tabs indent from Options dialog.  This 'feature'
243   has never worked and no one has complained.  It is still possible to set a
244   default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
245   tabs for the current EditorWindow via the Format menu) but IDLE will
246   encourage indentation via spaces.
248 - Enable setting the indentation width using the Options dialog.
249   Bug # 783877
251 - Add keybindings for del-word-left and del-word-right.
253 - Discourage using an indent width other than 8 when using tabs to indent
254   Python code.
256 - Restore use of EditorWindow.set_indentation_params(), was dead code since
257   Autoindent was merged into EditorWindow.  This allows IDLE to conform to the
258   indentation width of a loaded file.  (But it still will not switch to tabs
259   even if the file uses tabs.)  Any change in indent width is local to that
260   window.
262 - Add Tabnanny check before Run/F5, not just when Checking module.
264 - If an extension can't be loaded, print warning and skip it instead of
265   erroring out.
267 - Improve error handling when .idlerc can't be created (warn and exit).
269 - The GUI was hanging if the shell window was closed while a raw_input()
270   was pending.  Restored the quit() of the readline() mainloop().
271   http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
273 - The remote procedure call module rpc.py can now access data attributes of
274   remote registered objects.  Changes to these attributes are local, however.
276 What's New in IDLE 1.1?
277 =======================
279 *Release date: 30-NOV-2004*
281 - On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
282   stuck subprocess MainThread because only the SocketThread was exiting.
284 What's New in IDLE 1.1b3/rc1?
285 =============================
287 *Release date: 18-NOV-2004*
289 - Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
290   button) caused IDLE to fail on restart (no new keyset was created in
291   config-keys.cfg).  Also true for Theme/highlights.  Python Bug 1064535.
293 - A change to the linecache.py API caused IDLE to exit when an exception was
294   raised while running without the subprocess (-n switch).  Python Bug 1063840.
296 What's New in IDLE 1.1b2?
297 =========================
299 *Release date: 03-NOV-2004*
301 - When paragraph reformat width was made configurable, a bug was
302   introduced that caused reformatting of comment blocks to ignore how
303   far the block was indented, effectively adding the indentation width
304   to the reformat width.  This has been repaired, and the reformat
305   width is again a bound on the total width of reformatted lines.
307 What's New in IDLE 1.1b1?
308 =========================
310 *Release date: 15-OCT-2004*
313 What's New in IDLE 1.1a3?
314 =========================
316 *Release date: 02-SEP-2004*
318 - Improve keyboard focus binding, especially in Windows menu.  Improve
319   window raising, especially in the Windows menu and in the debugger.
320   IDLEfork 763524.
322 - If user passes a non-existent filename on the commandline, just
323   open a new file, don't raise a dialog.  IDLEfork 854928.
326 What's New in IDLE 1.1a2?
327 =========================
329 *Release date: 05-AUG-2004*
331 - EditorWindow.py was not finding the .chm help file on Windows.  Typo
332   at Rev 1.54.  Python Bug 990954
334 - checking sys.platform for substring 'win' was breaking IDLE docs on Mac
335   (darwin).  Also, Mac Safari browser requires full file:// URIs.  SF 900580.
338 What's New in IDLE 1.1a1?
339 =========================
341 *Release date: 08-JUL-2004*
343 - Redirect the warning stream to the shell during the ScriptBinding check of
344   user code and format the warning similarly to an exception for both that
345   check and for runtime warnings raised in the subprocess.
347 - CodeContext hint pane visibility state is now persistent across sessions.
348   The pane no longer appears in the shell window.  Added capability to limit
349   extensions to shell window or editor windows.  Noam Raphael addition
350   to Patch 936169.
352 - Paragraph reformat width is now a configurable parameter in the
353   Options GUI.
355 - New Extension: CodeContext.  Provides block structuring hints for code
356   which has scrolled above an edit window. Patch 936169 Noam Raphael.
358 - If nulls somehow got into the strings in recent-files.lst
359   EditorWindow.update_recent_files_list() was failing.  Python Bug 931336.
361 - If the normal background is changed via Configure/Highlighting, it will
362   update immediately, thanks to the previously mentioned patch by Nigel Rowe.
364 - Add a highlight theme for builtin keywords.  Python Patch 805830 Nigel Rowe
365   This also fixed IDLEfork bug [ 693418 ] Normal text background color not
366   refreshed and Python bug [897872 ] Unknown color name on HP-UX
368 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
369   to the execution server.  The return of the OK response from the subprocess
370   initialization was interfering and causing the sending socket to be not
371   ready.  Add an IO ready test to fix this.  Moved the polling IO ready test
372   into pollpacket().
374 - Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
376 - Added a Tk error dialog to run.py inform the user if the subprocess can't
377   connect to the user GUI process.  Added a timeout to the GUI's listening
378   socket.  Added Tk error dialogs to PyShell.py to announce a failure to bind
379   the port or connect to the subprocess.  Clean up error handling during
380   connection initiation phase.  This is an update of Python Patch 778323.
382 - Print correct exception even if source file changed since shell was
383   restarted.  IDLEfork Patch 869012 Noam Raphael
385 - Keybindings with the Shift modifier now work correctly.  So do bindings which
386   use the Space key.  Limit unmodified user keybindings to the function keys.
387   Python Bug 775353, IDLEfork Bugs 755647, 761557
389 - After an exception, run.py was not setting the exception vector. Noam
390   Raphael suggested correcting this so pdb's postmortem pm() would work.
391   IDLEfork Patch 844675
393 - IDLE now does not fail to save the file anymore if the Tk buffer is not a
394   Unicode string, yet eol_convention is.  Python Bugs 774680, 788378
396 - IDLE didn't start correctly when Python was installed in "Program Files" on
397   W2K and XP.  Python Bugs 780451, 784183
399 - config-main.def documentation incorrectly referred to idle- instead of
400   config-  filenames.  SF 782759  Also added note about .idlerc location.
403 What's New in IDLE 1.0?
404 =======================
406 *Release date: 29-Jul-2003*
408 - Added a banner to the shell discussing warnings possibly raised by personal
409   firewall software.  Added same comment to README.txt.
412 What's New in IDLE 1.0 release candidate 2?
413 ===========================================
415 *Release date: 24-Jul-2003*
417 - Calltip error when docstring was None  Python Bug 775541
420 What's New in IDLE 1.0 release candidate 1?
421 ===========================================
423 *Release date: 18-Jul-2003*
425 - Updated extend.txt, help.txt, and config-extensions.def to correctly
426   reflect the current status of the configuration system.  Python Bug 768469
428 - Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
430 - Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
431   Python Patch 768187
433 - Break or continue statements outside a loop were causing IDLE crash
434   Python Bug 767794
436 - Convert Unicode strings from readline to IOBinding.encoding.  Also set
437   sys.std{in|out|err}.encoding, for both the local and the subprocess case.
438   SF IDLEfork patch 682347.
441 What's New in IDLE 1.0b2?
442 =========================
444 *Release date: 29-Jun-2003*
446 - Extend AboutDialog.ViewFile() to support file encodings.  Make the CREDITS
447   file Latin-1.
449 - Updated the About dialog to reflect re-integration into Python.  Provide
450   buttons to display Python's NEWS, License, and Credits, plus additional
451   buttons for IDLE's README and NEWS.
453 - TextViewer() now has a third parameter which allows inserting text into the
454   viewer instead of reading from a file.
456 - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
457   IDLEfork modified to install in the Python environment.  The code in the
458   interrupt module has been moved to thread.interrupt_main(). )
460 - Printing the Shell window was failing if it was not saved first SF 748975
462 - When using the Search in Files dialog, if the user had a selection
463   highlighted in his Editor window, insert it into the dialog search field.
465 - The Python Shell entry was disappearing from the Windows menu.
467 - Update the Windows file list when a file name change occurs
469 - Change to File / Open Module: always pop up the dialog, using the current
470   selection as the default value.  This is easier to use habitually.
472 - Avoided a problem with starting the subprocess when 'localhost' doesn't
473   resolve to the user's loopback interface.  SF 747772
475 - Fixed an issue with highlighted errors never de-colorizing.  SF 747677.  Also
476   improved notification of Tabnanny Token Error.
478 - File / New will by default save in the directory of the Edit window from
479   which it was initiated.  SF 748973 Guido van Rossum patch.
482 What's New in IDLEfork 0.9b1?
483 =============================
485 *Release date: 02-Jun-2003*
487 - The current working directory of the execution environment (and shell
488   following completion of execution) is now that of the module being run.
490 - Added the delete-exitfunc option to config-main.def.  (This option is not
491   included in the Options dialog.)  Setting this to True (the default) will
492   cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
494 - IDLE now preserves the line ending codes when editing a file produced on
495   a different platform. SF 661759,  SF 538584
497 - Reduced default editor font size to 10 point and increased window height
498   to provide a better initial impression on Windows.
500 - Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
501   the default font when first installed on Windows.  SF 661676
503 - Added Autosave feature: when user runs code from edit window, if the file
504   has been modified IDLE will silently save it if Autosave is enabled.  The
505   option is set in the Options dialog, and the default is to prompt the
506   user to save the file.   SF 661318 Bruce Sherwood patch.
508 - Improved the RESTART annotation in the shell window when the user restarts
509   the shell while it is generating output.  Also improved annotation when user
510   repeatedly hammers the Ctrl-F6 restart.
512 - Allow IDLE to run when not installed and cwd is not the IDLE directory
513   SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
515 - When a module is run from an EditorWindow: if its directory is not in
516   sys.path, prepend it.  This allows the module to import other modules in
517   the same directory.  Do the same for a script run from the command line.
519 - Correctly restart the subprocess if it is running user code and the user
520   attempts to run some other module or restarts the shell.  Do the same if
521   the link is broken and it is possible to restart the subprocess and re-
522   connect to the GUI.   SF RFE 661321.
524 - Improved exception reporting when running commands or scripts from the
525   command line.
527 - Added a -n command line switch to start IDLE without the subprocess.
528   Removed the Shell menu when running in that mode.  Updated help messages.
530 - Added a comment to the shell startup header to indicate when IDLE is not
531   using the subprocess.
533 - Restore the ability to run without the subprocess.  This can be important for
534   some platforms or configurations.  (Running without the subprocess allows the
535   debugger to trace through parts of IDLE itself, which may or may not be
536   desirable, depending on your point of view.  In addition, the traditional
537   reload/import tricks must be use if user source code is changed.)  This is
538   helpful for developing IDLE using IDLE, because one instance can be used to
539   edit the code and a separate instance run to test changes.  (Multiple
540   concurrent IDLE instances with subprocesses is a future feature)
542 - Improve the error message a user gets when saving a file with non-ASCII
543   characters and no source encoding is specified.  Done by adding a dialog
544   'EncodingMessage', which contains the line to add in a fixed-font entry
545   widget, and which has a button to add that line to the file automatically.
546   Also, add a configuration option 'EditorWindow/encoding', which has three
547   possible values: none, utf-8, and locale. None is the default: IDLE will show
548   this dialog when non-ASCII characters are encountered. utf-8 means that files
549   with non-ASCII characters are saved as utf-8-with-bom. locale means that
550   files are saved in the locale's encoding; the dialog is only displayed if the
551   source contains characters outside the locale's charset.  SF 710733 - Loewis
553 - Improved I/O response by tweaking the wait parameter in various
554   calls to signal.signal().
556 - Implemented a threaded subprocess which allows interrupting a pass
557   loop in user code using the 'interrupt' extension.  User code runs
558   in MainThread, while the RPCServer is handled by SockThread.  This is
559   necessary because Windows doesn't support signals.
561 - Implemented the 'interrupt' extension module, which allows a subthread
562   to raise a KeyboardInterrupt in the main thread.
564 - Attempting to save the shell raised an error related to saving
565   breakpoints, which are not implemented in the shell
567 - Provide a correct message when 'exit' or 'quit' are entered at the
568   IDLE command prompt  SF 695861
570 - Eliminate extra blank line in shell output caused by not flushing
571   stdout when user code ends with an unterminated print. SF 695861
573 - Moved responsibility for exception formatting (i.e. pruning IDLE internal
574   calls) out of rpc.py into the client and server.
576 - Exit IDLE cleanly even when doing subprocess I/O
578 - Handle subprocess interrupt with an RPC message.
580 - Restart the subprocess if it terminates itself. (VPython programs do that)
582 - Support subclassing of exceptions, including in the shell, by moving the
583   exception formatting to the subprocess.
587 What's New in IDLEfork 0.9 Alpha 2?
588 ===================================
590 *Release date: 27-Jan-2003*
592 - Updated INSTALL.txt to claify use of the python2 rpm.
594 - Improved formatting in IDLE Help.
596 - Run menu: Replace "Run Script" with "Run Module".
598 - Code encountering an unhandled exception under the debugger now shows
599   the correct traceback, with IDLE internal levels pruned out.
601 - If an exception occurs entirely in IDLE, don't prune the IDLE internal
602   modules from the traceback displayed.
604 - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
606 - IDLE icons will now install correctly even when setup.py is run from the
607   build directory
609 - Class Browser now compatible with Python2.3 version of pyclbr.py
611 - Left cursor move in presence of selected text now moves from left end
612   of the selection.
614 - Add Meta keybindings to "IDLE Classic Windows" to handle reversed
615   Alt/Meta on some Linux distros.
617 - Change default: IDLE now starts with Python Shell.
619 - Removed the File Path from the Additional Help Sources scrolled list.
621 - Add capability to access Additional Help Sources on the web if the
622   Help File Path begins with //http or www.  (Otherwise local path is
623   validated, as before.)
625 - Additional Help Sources were not being posted on the Help menu in the
626   order entered.  Implement sorting the list by [HelpFiles] 'option'
627   number.
629 - Add Browse button to New Help Source dialog.  Arrange to start in
630   Python/Doc if platform is Windows, otherwise start in current directory.
632 - Put the Additional Help Sources directly on the Help menu instead of in
633   an Extra Help cascade menu.  Rearrange the Help menu so the Additional
634   Help Sources come last.  Update help.txt appropriately.
636 - Fix Tk root pop-ups in configSectionNameDialog.py  and configDialog.py
638 - Uniform capitalization in General tab of ConfigDialog, update the doc string.
640 - Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
641   deleting Additional Help Sources from the user's config file.
643 - Make configHelpSourceEdit OK button the default and bind <Return>
645 - Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
646   to parents.
648 - Use os.startfile() to open both Additional Help and Python Help on the
649   Windows platform.  The application associated with the file type will act as
650   the viewer.  Windows help files (.chm) are now supported via the
651   Settings/General/Additional Help facility.
653 - If Python Help files are installed locally on Linux, use them instead of
654   accessing python.org.
656 - Make the methods for finding the Python help docs more robust, and make
657   them work in the installed configuration, also.
659 - On the Save Before Run dialog, make the OK button the default.  One
660   less mouse action!
662 - Add a method: EditorWindow.get_geometry() for future use in implementing
663   window location persistence.
665 - Removed the "Help/Advice" menu entry.  Thanks, David!  We'll remember!
667 - Change the "Classic Windows" theme's paste key to be <ctrl-v>.
669 - Rearrange the Shell menu to put Stack Viewer entries adjacent.
671 - Add the ability to restart the subprocess interpreter from the shell window;
672   add an associated menu entry "Shell/Restart" with binding Control-F6.  Update
673   IDLE help.
675 - Upon a restart, annotate the shell window with a "restart boundary".  Add a
676   shell window menu "Shell/View Restart" with binding F6 to jump to the most
677   recent restart boundary.
679 - Add Shell menu to Python Shell; change "Settings" to "Options".
681 - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
683 - Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
685 - In installer text, fix reference to Visual Python, should be VPython.
686   Properly credit David Scherer.
688 - Modified idle, idle.py, idle.pyw to improve exception handling.
691 What's New in IDLEfork 0.9 Alpha 1?
692 ===================================
694 *Release date: 31-Dec-2002*
696 - First release of major new functionality.  For further details refer to
697   Idle-dev and/or the Sourceforge CVS.
699 - Adapted to the Mac platform.
701 - Overhauled the IDLE startup options and revised the idle -h help message,
702   which provides details of command line usage.
704 - Multiple bug fixes and usability enhancements.
706 - Introduced the new RPC implementation, which includes a debugger.  The output
707   of user code is to the shell, and the shell may be used to inspect the
708   environment after the run has finished.  (In version 0.8.1 the shell
709   environment was separate from the environment of the user code.)
711 - Introduced the configuration GUI and a new About dialog.
713 - Removed David Scherer's Remote Procedure Call code and replaced with Guido
714   van Rossum's.  GvR code has support for the IDLE debugger and uses the shell
715   to inspect the environment of code Run from an Edit window.  Files removed:
716   ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
718 --------------------------------------------------------------------
719 Refer to HISTORY.txt for additional information on earlier releases.
720 --------------------------------------------------------------------