blob: 0eb939b34cdd266ca798afd762bcada53c112e70 [file] [log] [blame]
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -04001What's New in IDLE 3.5.1?
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -05002=========================
Terry Jan Reedy4a93cf72015-11-21 13:33:06 -05003*Release date: 2015-12-06*
Terry Jan Reedy6e92c112015-11-21 13:31:27 -05004
5- Issue 15348: Stop the debugger engine (normally in a user process)
6 before closing the debugger window (running in the IDLE process).
7 This prevents the RuntimeErrors that were being caught and ignored.
8
9- Issue #24455: Prevent IDLE from hanging when a) closing the shell while the
10 debugger is active (15347); b) closing the debugger with the [X] button
11 (15348); and c) activating the debugger when already active (24455).
12 The patch by Mark Roseman does this by making two changes.
13 1. Suspend and resume the gui.interaction method with the tcl vwait
14 mechanism intended for this purpose (instead of root.mainloop & .quit).
15 2. In gui.run, allow any existing interaction to terminate first.
16
17- Change 'The program' to 'Your program' in an IDLE 'kill program?' message
18 to make it clearer that the program referred to is the currently running
19 user program, not IDLE itself.
20
21- Issue #24750: Improve the appearance of the IDLE editor window status bar.
22 Patch by Mark Roseman.
23
24- Issue #25313: Change the handling of new built-in text color themes to better
25 address the compatibility problem introduced by the addition of IDLE Dark.
26 Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
27
28- Issue #24782: Extension configuration is now a tab in the IDLE Preferences
29 dialog rather than a separate dialog. The former tabs are now a sorted
30 list. Patch by Mark Roseman.
31
32- Issue #22726: Re-activate the config dialog help button with some content
33 about the other buttons and the new IDLE Dark theme.
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -040034
Terry Jan Reedyd17e9782015-10-04 01:14:51 -040035- Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme.
36 It is more or less IDLE Classic inverted, with a cobalt blue background.
37 Strings, comments, keywords, ... are still green, red, orange, ... .
Terry Jan Reedy6e92c112015-11-21 13:31:27 -050038 To use it with IDLEs released before November 2015, hit the
39 'Save as New Custom Theme' button and enter a new name,
40 such as 'Custom Dark'. The custom theme will work with any IDLE
41 release, and can be modified.
Terry Jan Reedyd17e9782015-10-04 01:14:51 -040042
43- Issue #25224: README.txt is now an idlelib index for IDLE developers and
Terry Jan Reedy6e92c112015-11-21 13:31:27 -050044 curious users. The previous user content is now in the IDLE doc chapter.
45 'IDLE' now means 'Integrated Development and Learning Environment'.
Terry Jan Reedyd17e9782015-10-04 01:14:51 -040046
47- Issue #24820: Users can now set breakpoint colors in
48 Settings -> Custom Highlighting. Original patch by Mark Roseman.
49
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -040050- Issue #24972: Inactive selection background now matches active selection
Terry Jan Reedy6e92c112015-11-21 13:31:27 -050051 background, as configured by users, on all systems. Found items are now
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -040052 always highlighted on Windows. Initial patch by Mark Roseman.
53
54- Issue #24570: Idle: make calltip and completion boxes appear on Macs
55 affected by a tk regression. Initial patch by Mark Roseman.
56
57- Issue #24988: Idle ScrolledList context menus (used in debugger)
58 now work on Mac Aqua. Patch by Mark Roseman.
59
60- Issue #24801: Make right-click for context menu work on Mac Aqua.
61 Patch by Mark Roseman.
62
63- Issue #25173: Associate tkinter messageboxes with a specific widget.
64 For Mac OSX, make them a 'sheet'. Patch by Mark Roseman.
65
66- Issue #25198: Enhance the initial html viewer now used for Idle Help.
67 * Properly indent fixed-pitch text (patch by Mark Roseman).
68 * Give code snippet a very Sphinx-like light blueish-gray background.
69 * Re-use initial width and height set by users for shell and editor.
70 * When the Table of Contents (TOC) menu is used, put the section header
Terry Jan Reedy6e92c112015-11-21 13:31:27 -050071 at the top of the screen.
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -040072
73- Issue #25225: Condense and rewrite Idle doc section on text colors.
74
75- Issue #21995: Explain some differences between IDLE and console Python.
76
77- Issue #22820: Explain need for *print* when running file from Idle editor.
78
79- Issue #25224: Doc: augment Idle feature list and no-subprocess section.
80
81- Issue #25219: Update doc for Idle command line options.
82 Some were missing and notes were not correct.
83
Terry Jan Reedyd9763c22015-09-21 19:28:22 -040084- Issue #24861: Most of idlelib is private and subject to change.
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -040085 Use idleib.idle.* to start Idle. See idlelib.__init__.__doc__.
Terry Jan Reedyd9763c22015-09-21 19:28:22 -040086
Terry Jan Reedy09fbb202015-09-21 01:07:59 -040087- Issue #25199: Idle: add synchronization comments for future maintainers.
88
Terry Jan Reedycba1a1a2015-09-21 22:36:42 -040089- Issue #16893: Replace help.txt with help.html for Idle doc display.
90 The new idlelib/help.html is rstripped Doc/build/html/library/idle.html.
Terry Jan Reedy09fbb202015-09-21 01:07:59 -040091 It looks better than help.txt and will better document Idle as released.
Terry Jan Reedyd9763c22015-09-21 19:28:22 -040092 The tkinter html viewer that works for this file was written by Mark Roseman.
Terry Jan Reedy09fbb202015-09-21 01:07:59 -040093 The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
94
95- Issue #24199: Deprecate unused idlelib.idlever with possible removal in 3.6.
96
Terry Jan Reedy09fbb202015-09-21 01:07:59 -040097- Issue #24790: Remove extraneous code (which also create 2 & 3 conflicts).
98
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -040099
Terry Jan Reedy5c4725e2014-10-01 03:10:27 -0400100What's New in IDLE 3.5.0?
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400101=========================
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -0400102*Release date: 2015-09-13*
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400103
Terry Jan Reedy5080deb2015-08-16 23:23:16 -0400104- Issue #23672: Allow Idle to edit and run files with astral chars in name.
105 Patch by Mohd Sanad Zaki Rizvi.
106
107- Issue 24745: Idle editor default font. Switch from Courier to
108 platform-sensitive TkFixedFont. This should not affect current customized
109 font selections. If there is a problem, edit $HOME/.idlerc/config-main.cfg
110 and remove 'fontxxx' entries from [Editor Window]. Patch by Mark Roseman.
111
112- Issue #21192: Idle editor. When a file is run, put its name in the restart bar.
113 Do not print false prompts. Original patch by Adnan Umer.
114
115- Issue #13884: Idle menus. Remove tearoff lines. Patch by Roger Serwy.
116
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400117- Issue #23184: remove unused names and imports in idlelib.
118 Initial patch by Al Sweigart.
119
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400120- Issue #20577: Configuration of the max line length for the FormatParagraph
121 extension has been moved from the General tab of the Idle preferences dialog
122 to the FormatParagraph tab of the Config Extensions dialog.
123 Patch by Tal Einat.
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400124
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500125- Issue #16893: Update Idle doc chapter to match current Idle and add new
126 information.
127
128- Issue #3068: Add Idle extension configuration dialog to Options menu.
129 Changes are written to HOME/.idlerc/config-extensions.cfg.
130 Original patch by Tal Einat.
131
132- Issue #16233: A module browser (File : Class Browser, Alt+C) requires a
133 editor window with a filename. When Class Browser is requested otherwise,
134 from a shell, output window, or 'Untitled' editor, Idle no longer displays
135 an error box. It now pops up an Open Module box (Alt+M). If a valid name
136 is entered and a module is opened, a corresponding browser is also opened.
137
138- Issue #4832: Save As to type Python files automatically adds .py to the
139 name you enter (even if your system does not display it). Some systems
140 automatically add .txt when type is Text files.
141
142- Issue #21986: Code objects are not normally pickled by the pickle module.
143 To match this, they are no longer pickled when running under Idle.
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500144
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400145- Issue #23180: Rename IDLE "Windows" menu item to "Window".
146 Patch by Al Sweigart.
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500147
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400148- Issue #17390: Adjust Editor window title; remove 'Python',
149 move version to end.
150
151- Issue #14105: Idle debugger breakpoints no longer disappear
152 when inseting or deleting lines.
153
154- Issue #17172: Turtledemo can now be run from Idle.
155 Currently, the entry is on the Help menu, but it may move to Run.
156 Patch by Ramchandra Apt and Lita Cho.
157
158- Issue #21765: Add support for non-ascii identifiers to HyperParser.
159
160- Issue #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav
161 Heblikar.
162
163- Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
164
165- Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
166
167- Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
168 Heblikar.
169
170- Issue #12387: Add missing upper(lower)case versions of default Windows key
171 bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
172
173- Issue #21695: Closing a Find-in-files output window while the search is
174 still in progress no longer closes Idle.
175
176- Issue #18910: Add unittest for textView. Patch by Phil Webster.
177
178- Issue #18292: Add unittest for AutoExpand. Patch by Saihadhav Heblikar.
179
180- Issue #18409: Add unittest for AutoComplete. Patch by Phil Webster.
181
Terry Jan Reedy5c4725e2014-10-01 03:10:27 -0400182- Issue #21477: htest.py - Improve framework, complete set of tests.
183 Patches by Saimadhav Heblikar
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400184
185- Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin
186 consolidating and improving human-validated tests of Idle. Change other files
187 as needed to work with htest. Running the module as __main__ runs all tests.
188
189- Issue #21139: Change default paragraph width to 72, the PEP 8 recommendation.
190
191- Issue #21284: Paragraph reformat test passes after user changes reformat width.
192
193- Issue #17654: Ensure IDLE menus are customized properly on OS X for
194 non-framework builds and for all variants of Tk.
195
196
Ned Deily5d590d82012-10-18 18:19:11 -0700197What's New in IDLE 3.4.0?
Ned Deilybfbf3f12012-10-18 18:16:44 -0700198=========================
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400199*Release date: 2014-03-16*
Ned Deilybfbf3f12012-10-18 18:16:44 -0700200
Terry Jan Reedy32622232013-03-30 18:32:19 -0400201- Issue #17390: Display Python version on Idle title bar.
202 Initial patch by Edmond Burnett.
203
Andrew Svetlov1bd7f022013-01-14 19:27:36 +0200204- Issue #5066: Update IDLE docs. Patch by Todd Rovito.
205
Georg Brandl9aa23c52013-04-06 09:40:02 +0200206- Issue #17625: Close the replace dialog after it is used.
207
Ned Deilybfbf3f12012-10-18 18:16:44 -0700208- Issue #16226: Fix IDLE Path Browser crash.
209 (Patch by Roger Serwy)
210
Ned Deilyb6d24d92012-10-22 15:18:46 -0700211- Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
212 with certain versions of Tk 8.5. Initial patch by Kevin Walzer.
213
Ned Deilybfbf3f12012-10-18 18:16:44 -0700214
Martin v. Löwis156989a2012-06-03 12:00:48 +0200215What's New in IDLE 3.3.0?
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200216=========================
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400217*Release date: 2012-09-29*
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200218
Georg Brandl8bc7e312013-04-06 09:36:20 +0200219- Issue #17625: Close the replace dialog after it is used.
220
Martin v. Löwis30d5e6c2012-07-25 11:32:26 +0200221- Issue #7163: Propagate return value of sys.stdout.write.
222
Martin v. Löwisc882b7c2012-07-25 10:47:20 +0200223- Issue #15318: Prevent writing to sys.stdin.
224
Ned Deilyc65ef9b2012-07-09 18:16:11 -0700225- Issue #4832: Modify IDLE to save files with .py extension by
226 default on Windows and OS X (Tk 8.5) as it already does with X11 Tk.
227
Martin v. Löwis8a75bed2012-07-11 08:29:03 +0200228- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
Martin v. Löwis9ae3f7a2012-07-09 20:46:11 +0200229
Terry Jan Reedy2a2ce4f2012-06-07 19:41:04 -0400230- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
231 Erroneous tool tips have been corrected. Default added for callables.
232
233- Issue10365: File open dialog now works instead of crashing even when
234 parent window is closed while dialog is open.
235
236- Issue 14876: use user-selected font for highlight configuration.
237
Martin v. Löwis862d13a2012-06-03 11:55:32 +0200238- Issue #14937: Perform auto-completion of filenames in strings even for
Martin v. Löwis9f44a662012-06-03 12:32:42 +0200239 non-ASCII filenames. Likewise for identifiers.
Martin v. Löwis862d13a2012-06-03 11:55:32 +0200240
Andrew Svetlovdfe980b2012-04-05 21:54:39 +0300241- Issue #8515: Set __file__ when run file in IDLE.
242 Initial patch by Bruce Frederiksen.
243
Éric Araujo1641bb72012-03-26 23:35:31 -0400244- IDLE can be launched as `python -m idlelib`
Andrew Svetlova5cf6c42012-03-26 22:14:13 +0300245
Andrew Svetlovf3c29762012-03-31 14:10:10 +0300246- Issue #14409: IDLE now properly executes commands in the Shell window
247 when it cannot read the normal config files on startup and
248 has to use the built-in default key bindings.
249 There was previously a bug in one of the defaults.
Andrew Svetlov67ac0792012-03-29 19:01:28 +0300250
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200251- Issue #3573: IDLE hangs when passing invalid command line args
252 (directory(ies) instead of file(s)).
253
Ned Deilyeb00d092012-07-30 03:38:02 -0700254- Issue #14018: Update checks for unstable system Tcl/Tk versions on OS X
255 to include versions shipped with OS X 10.7 and 10.8 in addition to 10.6.
256
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200257
Kurt B. Kaiser6551baa2011-05-11 13:54:44 -0400258What's New in IDLE 3.2.1?
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400259=========================
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400260*Release date: 15-May-11*
261
Kurt B. Kaiserdfbe1592011-05-14 17:20:09 -0400262- Issue #6378: Further adjust idle.bat to start associated Python
263
Kurt B. Kaiser0a429822011-05-12 15:25:24 -0400264- Issue #11896: Save on Close failed despite selecting "Yes" in dialog.
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400265
266- Issue #1028: Ctrl-space binding to show completions was causing IDLE to exit.
267 Tk < 8.5 was sending invalid Unicode null; replaced with valid null.
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400268
Kurt B. Kaiser946f1722011-03-25 20:29:13 -0400269- <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
270 behavior. Issue 4676. Improve selection extension behaviour.
Kurt B. Kaiser946f1722011-03-25 20:29:13 -0400271
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400272- <Home> toggle non-functional when NumLock set on Windows. Issue 3851.
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400273
274
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000275What's New in IDLE 3.1b1?
276=========================
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400277*Release date: 06-May-09*
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000278
Kurt B. Kaiser5c32f672009-04-27 05:36:55 +0000279- Use of 'filter' in keybindingDialog.py was causing custom key assignment to
280 fail. Patch 5707 amaury.forgeotdarc.
281
Martin v. Löwis7e158452009-01-18 20:23:36 +0000282- Issue #4815: Offer conversion to UTF-8 if source files have
283 no encoding declaration and are not encoded in UTF-8.
284
Martin v. Löwis975a0792009-01-18 20:15:42 +0000285- Issue #4008: Fix problems with non-ASCII source files.
286
Martin v. Löwis5216d082008-12-29 18:43:40 +0000287- Issue #4323: Always encode source as UTF-8 without asking
288 the user (unless a different encoding is declared); remove
289 user configuration of source encoding; all according to
290 PEP 3120.
291
Ronald Oussorene9f8bf02009-01-02 13:10:34 +0000292- Issue #2665: On Windows, an IDLE installation upgraded from an old version
293 would not start if a custom theme was defined.
294
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -0400295
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000296What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.)
297=======================
Benjamin Petersonffeda292010-01-09 18:48:46 +0000298*Release date: XX-XXX-2010*
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000299
Kurt B. Kaiser1521fda2009-05-06 03:38:31 +0000300- idle.py modified and simplified to better support developing experimental
301 versions of IDLE which are not installed in the standard location.
302
Georg Brandl7b2669b2009-04-27 16:58:05 +0000303- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
304 file paths containing spaces. Bug 5559.
305
Kurt B. Kaiserc34ed8e2009-04-26 01:33:55 +0000306- Windows: Version string for the .chm help file changed, file not being
307 accessed Patch 5783 Guilherme Polo
308
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000309- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
310 David Scherer for suggesting the use of an ephemeral port for the GUI.
311 Patch 1529142 Weeble.
312
313- Remove port spec from run.py and fix bug where subprocess fails to
314 extract port from command line when warnings are present.
315
316- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
Kurt B. Kaiserdfbe1592011-05-14 17:20:09 -0400317 mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000318
319- Issue #3549: On MacOS the preferences menu was not present
320
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000321- IDLE would print a "Unhandled server exception!" message when internal
322 debugging is enabled.
323
324- Issue #4455: IDLE failed to display the windows list when two windows have
325 the same title.
326
327- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
328 fail to properly display the error message.
329
Kurt B. Kaiserf609a342007-12-28 03:57:56 +0000330- help() was not paging to the shell. Issue1650.
Kurt B. Kaiser8a78cad2007-12-13 03:38:16 +0000331
332- CodeContext was not importing.
333
334- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
335 http://mail.python.org/pipermail/python-3000/2007-December/011491.html
336
337- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
338
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000339- Issue #1585: IDLE uses non-existent xrange() function.
340
Kurt B. Kaiser3e623ba2007-10-09 23:12:31 +0000341- Windows EOL sequence not converted correctly, encoding error.
342 Caused file save to fail. Bug 1130.
343
Kurt B. Kaiserbc3b3452007-08-30 22:16:49 +0000344- IDLE converted to Python 3000 syntax.
345
346- Strings became Unicode.
347
348- CallTips module now uses the inspect module to produce the argspec.
349
350- IDLE modules now use absolute import instead of implied relative import.
351
352- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
353 in config-main.cfg remains unchanged: if set, registered exit functions will
354 be cleared before IDLE exits.
Kurt B. Kaiserbc3b3452007-08-30 22:16:49 +0000355
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000356
Terry Jan Reedy09fbb202015-09-21 01:07:59 -0400357What's New in IDLE 2.6
358======================
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000359*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
360
361- Issue #2665: On Windows, an IDLE installation upgraded from an old version
362 would not start if a custom theme was defined.
363
364- Home / Control-A toggles between left margin and end of leading white
365 space. issue1196903, patch by Jeff Shute.
366
367- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
368
369- Autocompletion of filenames now support alternate separators, e.g. the
370 '/' char on Windows. issue2061 Patch by Tal Einat.
371
Christian Heimesa156e092008-02-16 07:38:31 +0000372- Configured selection highlighting colors were ignored; updating highlighting
373 in the config dialog would cause non-Python files to be colored as if they
374 were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
375
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000376- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
Christian Heimesa156e092008-02-16 07:38:31 +0000377
Christian Heimesbbffeb62008-01-24 09:42:52 +0000378- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
379
380- Could not open files in .idlerc directory if latter was hidden on Windows.
381 Issue 1743, Issue 1862.
382
Christian Heimes9a371592007-12-28 14:08:13 +0000383- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
384
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000385- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
386 of tabs. Patch 1612746 Tal Einat.
387
388- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
389
390- Show paste position if > 80 col. Patch 1659326 Tal Einat.
391
392- Update cursor color without restarting. Patch 1725576 Tal Einat.
393
394- Allow keyboard interrupt only when user code is executing in subprocess.
395 Patch 1225 Tal Einat (reworked from IDLE-Spoon).
396
397- configDialog cleanup. Patch 1730217 Tal Einat.
398
399- textView cleanup. Patch 1718043 Tal Einat.
400
401- Clean up EditorWindow close.
402
Christian Heimes68f5fbe2008-02-14 08:27:37 +0000403- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
404
405- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
406
407- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
408 option in config-extensions w/o a value. Patch #1672481, Tal Einat
409
Thomas Wouterscf297e42007-02-23 15:07:44 +0000410- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
411 mouse and cursor selection in ACWindow implemented; double Tab inserts
412 current selection and closes ACW (similar to double-click and Return); scroll
413 wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
414
415- AutoCompleteWindow moved below input line, will move above if there
416 isn't enough space. Patch 1621265 Tal Einat
417
418- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
419 Suggested solution by Christos Georgiou, Bug 791968.
420
421- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
422
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000423- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
424
Thomas Wouters89f507f2006-12-13 04:49:30 +0000425- Patch #1362975: Rework CodeContext indentation algorithm to
426 avoid hard-coding pixel widths.
427
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000428- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
429 is started with that option.
430
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000431- Honor the "Cancel" action in the save dialog (Debian bug #299092)
432
Thomas Wouters89f507f2006-12-13 04:49:30 +0000433- Some syntax errors were being caught by tokenize during the tabnanny
434 check, resulting in obscure error messages. Do the syntax check
435 first. Bug 1562716, 1562719
436
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000437- IDLE's version number takes a big jump to match the version number of
438 the Python release of which it's a part.
439
440
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000441What's New in IDLE 1.2?
442=======================
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000443*Release date: 19-SEP-2006*
444
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000445- File menu hotkeys: there were three 'p' assignments. Reassign the
446 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
447 Shell hotkey from 's' to 'l'.
448
449- IDLE honors new quit() and exit() commands from site.py Quitter() object.
450 Patch 1540892, Jim Jewett
451
452- The 'with' statement is now a Code Context block opener.
453 Patch 1540851, Jim Jewett
454
455- Retrieval of previous shell command was not always preserving indentation
456 (since 1.2a1) Patch 1528468 Tal Einat.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000457
458- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
459
460- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
461
462- When used w/o subprocess, all exceptions were preceded by an error
463 message claiming they were IDLE internal errors (since 1.2a1).
464
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000465- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
466
467- Bug #1517990: IDLE keybindings on MacOS X now work correctly
468
469- Bug #1517996: IDLE now longer shows the default Tk menu when a
470 path browser, class browser or debugger is the frontmost window on MacOS X
471
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000472- EditorWindow.test() was failing. Bug 1417598
473
474- EditorWindow failed when used stand-alone if sys.ps1 not set.
475 Bug 1010370 Dave Florek
476
477- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
478
479- Avoid occasional failure to detect closing paren properly.
480 Patch 1407280 Tal Einat
481
482- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
483
484- Colorizer now handles #<builtin> correctly, also unicode strings and
485 'as' keyword in comment directly following import command. Closes 1325071.
486 Patch 1479219 Tal Einat
487
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000488- Patch #1162825: Support non-ASCII characters in IDLE window titles.
489
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000490- Source file f.flush() after writing; trying to avoid lossage if user
491 kills GUI.
Kurt B. Kaiser5c6e0a12005-11-22 21:09:37 +0000492
493- Options / Keys / Advanced dialog made functional. Also, allow binding
494 of 'movement' keys.
495
496- 'syntax' patch adds improved calltips and a new class attribute listbox.
497 MultiCall module allows binding multiple actions to an event.
498 Patch 906702 Noam Raphael
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000499
Kurt B. Kaiserb61602c2005-11-15 07:20:06 +0000500- Better indentation after first line of string continuation.
501 IDLEfork Patch 681992, Noam Raphael
502
Kurt B. Kaiser389482c2005-10-03 20:08:25 +0000503- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
504
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000505- Increased performance in CodeContext extension Patch 936169 Noam Raphael
506
Kurt B. Kaiser2618c7f2005-08-23 02:27:23 +0000507- Mac line endings were incorrect when pasting code from some browsers
508 when using X11 and the Fink distribution. Python Bug 1263656.
509
Kurt B. Kaisera7daba62005-06-19 18:56:15 +0000510- <Enter> when cursor is on a previous command retrieves that command. Instead
511 of replacing the input line, the previous command is now appended to the
512 input line. Indentation is preserved, and undo is enabled.
513 Patch 1196917 Jeff Shute
514
Kurt B. Kaiserca7329c2005-06-12 05:19:23 +0000515- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
516 the Untabify command.
517
518- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
519 Patch 1196980 Jeff Shute
520
Kurt B. Kaiserdf506ea2005-06-12 04:33:30 +0000521- New files are colorized by default, and colorizing is removed when
522 saving as non-Python files. Patch 1196895 Jeff Shute
523 Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
524
Kurt B. Kaiser935ea9a2005-05-10 03:44:24 +0000525- Improve subprocess link error notification.
526
Kurt B. Kaiser20345fb2005-05-05 23:29:54 +0000527- run.py: use Queue's blocking feature instead of sleeping in the main
528 loop. Patch # 1190163 Michiel de Hoon
529
Kurt B. Kaiser0676dfd2005-02-03 01:37:14 +0000530- Add config-main option to make the 'history' feature non-cyclic.
531 Default remains cyclic. Python Patch 914546 Noam Raphael.
532
Kurt B. Kaiseracdef852005-01-31 03:34:26 +0000533- Removed ability to configure tabs indent from Options dialog. This 'feature'
534 has never worked and no one has complained. It is still possible to set a
535 default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
536 tabs for the current EditorWindow via the Format menu) but IDLE will
537 encourage indentation via spaces.
538
539- Enable setting the indentation width using the Options dialog.
540 Bug # 783877
541
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000542- Add keybindings for del-word-left and del-word-right.
543
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000544- Discourage using an indent width other than 8 when using tabs to indent
545 Python code.
546
547- Restore use of EditorWindow.set_indentation_params(), was dead code since
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000548 Autoindent was merged into EditorWindow. This allows IDLE to conform to the
549 indentation width of a loaded file. (But it still will not switch to tabs
550 even if the file uses tabs.) Any change in indent width is local to that
551 window.
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000552
553- Add Tabnanny check before Run/F5, not just when Checking module.
554
Kurt B. Kaiserb00e89f2005-01-18 00:54:58 +0000555- If an extension can't be loaded, print warning and skip it instead of
556 erroring out.
557
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000558- Improve error handling when .idlerc can't be created (warn and exit).
559
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000560- The GUI was hanging if the shell window was closed while a raw_input()
Kurt B. Kaiser5c3df352004-12-23 04:20:59 +0000561 was pending. Restored the quit() of the readline() mainloop().
562 http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
563
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000564- The remote procedure call module rpc.py can now access data attributes of
565 remote registered objects. Changes to these attributes are local, however.
566
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -0400567
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000568What's New in IDLE 1.1?
569=======================
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000570*Release date: 30-NOV-2004*
Kurt B. Kaisere9535112004-11-19 15:46:49 +0000571
572- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
573 stuck subprocess MainThread because only the SocketThread was exiting.
574
Kurt B. Kaiser03562a52004-11-16 21:31:08 +0000575- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
576 button) caused IDLE to fail on restart (no new keyset was created in
577 config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
578
Kurt B. Kaiserf7a88992004-11-13 21:05:58 +0000579- A change to the linecache.py API caused IDLE to exit when an exception was
580 raised while running without the subprocess (-n switch). Python Bug 1063840.
581
Tim Peters16e3cf52004-10-24 23:45:42 +0000582- When paragraph reformat width was made configurable, a bug was
583 introduced that caused reformatting of comment blocks to ignore how
584 far the block was indented, effectively adding the indentation width
585 to the reformat width. This has been repaired, and the reformat
586 width is again a bound on the total width of reformatted lines.
587
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000588- Improve keyboard focus binding, especially in Windows menu. Improve
589 window raising, especially in the Windows menu and in the debugger.
590 IDLEfork 763524.
591
Mark Dickinson934896d2009-02-21 20:59:32 +0000592- If user passes a non-existent filename on the commandline, just
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000593 open a new file, don't raise a dialog. IDLEfork 854928.
594
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000595- EditorWindow.py was not finding the .chm help file on Windows. Typo
596 at Rev 1.54. Python Bug 990954
597
Kurt B. Kaiser8aa23922004-07-15 04:54:57 +0000598- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
599 (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
600
Kurt B. Kaiser49a5fe12004-07-04 01:25:56 +0000601- Redirect the warning stream to the shell during the ScriptBinding check of
602 user code and format the warning similarly to an exception for both that
603 check and for runtime warnings raised in the subprocess.
604
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000605- CodeContext hint pane visibility state is now persistent across sessions.
606 The pane no longer appears in the shell window. Added capability to limit
607 extensions to shell window or editor windows. Noam Raphael addition
608 to Patch 936169.
609
610- Paragraph reformat width is now a configurable parameter in the
611 Options GUI.
612
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000613- New Extension: CodeContext. Provides block structuring hints for code
614 which has scrolled above an edit window. Patch 936169 Noam Raphael.
615
Kurt B. Kaisercf6f1b62004-04-11 03:16:07 +0000616- If nulls somehow got into the strings in recent-files.lst
617 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
618
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000619- If the normal background is changed via Configure/Highlighting, it will
620 update immediately, thanks to the previously mentioned patch by Nigel Rowe.
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +0000621
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000622- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000623 This also fixed IDLEfork bug [ 693418 ] Normal text background color not
624 refreshed and Python bug [897872 ] Unknown color name on HP-UX
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000625
Kurt B. Kaiserd6ab77d2004-01-21 19:21:11 +0000626- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
627 to the execution server. The return of the OK response from the subprocess
628 initialization was interfering and causing the sending socket to be not
629 ready. Add an IO ready test to fix this. Moved the polling IO ready test
630 into pollpacket().
631
632- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
633
Kurt B. Kaiseraf3eb872004-01-21 18:54:30 +0000634- Added a Tk error dialog to run.py inform the user if the subprocess can't
635 connect to the user GUI process. Added a timeout to the GUI's listening
636 socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
637 the port or connect to the subprocess. Clean up error handling during
638 connection initiation phase. This is an update of Python Patch 778323.
639
Tim Peters16e3cf52004-10-24 23:45:42 +0000640- Print correct exception even if source file changed since shell was
Kurt B. Kaisere9802a32004-01-02 04:04:04 +0000641 restarted. IDLEfork Patch 869012 Noam Raphael
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000642
Kurt B. Kaiser2303b1c2003-11-24 05:26:16 +0000643- Keybindings with the Shift modifier now work correctly. So do bindings which
644 use the Space key. Limit unmodified user keybindings to the function keys.
645 Python Bug 775353, IDLEfork Bugs 755647, 761557
646
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000647- After an exception, run.py was not setting the exception vector. Noam
Tim Peters16e3cf52004-10-24 23:45:42 +0000648 Raphael suggested correcting this so pdb's postmortem pm() would work.
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000649 IDLEfork Patch 844675
650
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000651- IDLE now does not fail to save the file anymore if the Tk buffer is not a
652 Unicode string, yet eol_convention is. Python Bugs 774680, 788378
653
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000654- IDLE didn't start correctly when Python was installed in "Program Files" on
655 W2K and XP. Python Bugs 780451, 784183
656
657- config-main.def documentation incorrectly referred to idle- instead of
658 config- filenames. SF 782759 Also added note about .idlerc location.
659
660
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000661What's New in IDLE 1.0?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000662=======================
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000663*Release date: 29-Jul-2003*
664
Kurt B. Kaiserb00e89f2005-01-18 00:54:58 +0000665- Added a banner to the shell discussing warnings possibly raised by personal
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000666 firewall software. Added same comment to README.txt.
667
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000668- Calltip error when docstring was None Python Bug 775541
669
Kurt B. Kaisercca91222003-07-16 03:10:43 +0000670- Updated extend.txt, help.txt, and config-extensions.def to correctly
671 reflect the current status of the configuration system. Python Bug 768469
672
673- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
674
675- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
676 Python Patch 768187
677
678- Break or continue statements outside a loop were causing IDLE crash
679 Python Bug 767794
680
681- Convert Unicode strings from readline to IOBinding.encoding. Also set
682 sys.std{in|out|err}.encoding, for both the local and the subprocess case.
683 SF IDLEfork patch 682347.
684
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000685- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
686 file Latin-1.
687
688- Updated the About dialog to reflect re-integration into Python. Provide
689 buttons to display Python's NEWS, License, and Credits, plus additional
690 buttons for IDLE's README and NEWS.
691
692- TextViewer() now has a third parameter which allows inserting text into the
693 viewer instead of reading from a file.
694
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000695- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
696 IDLEfork modified to install in the Python environment. The code in the
697 interrupt module has been moved to thread.interrupt_main(). )
698
699- Printing the Shell window was failing if it was not saved first SF 748975
700
701- When using the Search in Files dialog, if the user had a selection
702 highlighted in his Editor window, insert it into the dialog search field.
703
704- The Python Shell entry was disappearing from the Windows menu.
705
706- Update the Windows file list when a file name change occurs
707
708- Change to File / Open Module: always pop up the dialog, using the current
709 selection as the default value. This is easier to use habitually.
710
711- Avoided a problem with starting the subprocess when 'localhost' doesn't
712 resolve to the user's loopback interface. SF 747772
713
714- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
715 improved notification of Tabnanny Token Error.
716
717- File / New will by default save in the directory of the Edit window from
718 which it was initiated. SF 748973 Guido van Rossum patch.
719
Steven M. Gavad39993e2001-07-20 01:36:49 +0000720
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +0000721What's New in IDLEfork 0.9b1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000722=============================
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000723*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000724
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000725- The current working directory of the execution environment (and shell
Tim Peters16e3cf52004-10-24 23:45:42 +0000726 following completion of execution) is now that of the module being run.
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000727
728- Added the delete-exitfunc option to config-main.def. (This option is not
729 included in the Options dialog.) Setting this to True (the default) will
730 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
731
732- IDLE now preserves the line ending codes when editing a file produced on
733 a different platform. SF 661759, SF 538584
734
735- Reduced default editor font size to 10 point and increased window height
736 to provide a better initial impression on Windows.
737
738- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
739 the default font when first installed on Windows. SF 661676
740
741- Added Autosave feature: when user runs code from edit window, if the file
742 has been modified IDLE will silently save it if Autosave is enabled. The
743 option is set in the Options dialog, and the default is to prompt the
744 user to save the file. SF 661318 Bruce Sherwood patch.
745
746- Improved the RESTART annotation in the shell window when the user restarts
747 the shell while it is generating output. Also improved annotation when user
748 repeatedly hammers the Ctrl-F6 restart.
749
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000750- Allow IDLE to run when not installed and cwd is not the IDLE directory
751 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
752
753- When a module is run from an EditorWindow: if its directory is not in
754 sys.path, prepend it. This allows the module to import other modules in
755 the same directory. Do the same for a script run from the command line.
756
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000757- Correctly restart the subprocess if it is running user code and the user
758 attempts to run some other module or restarts the shell. Do the same if
759 the link is broken and it is possible to restart the subprocess and re-
760 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000761
762- Improved exception reporting when running commands or scripts from the
763 command line.
764
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000765- Added a -n command line switch to start IDLE without the subprocess.
766 Removed the Shell menu when running in that mode. Updated help messages.
767
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000768- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000769 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000770
771- Restore the ability to run without the subprocess. This can be important for
772 some platforms or configurations. (Running without the subprocess allows the
773 debugger to trace through parts of IDLE itself, which may or may not be
774 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000775 reload/import tricks must be use if user source code is changed.) This is
776 helpful for developing IDLE using IDLE, because one instance can be used to
777 edit the code and a separate instance run to test changes. (Multiple
778 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000779
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000780- Improve the error message a user gets when saving a file with non-ASCII
781 characters and no source encoding is specified. Done by adding a dialog
782 'EncodingMessage', which contains the line to add in a fixed-font entry
783 widget, and which has a button to add that line to the file automatically.
784 Also, add a configuration option 'EditorWindow/encoding', which has three
785 possible values: none, utf-8, and locale. None is the default: IDLE will show
786 this dialog when non-ASCII characters are encountered. utf-8 means that files
787 with non-ASCII characters are saved as utf-8-with-bom. locale means that
788 files are saved in the locale's encoding; the dialog is only displayed if the
789 source contains characters outside the locale's charset. SF 710733 - Loewis
790
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000791- Improved I/O response by tweaking the wait parameter in various
792 calls to signal.signal().
793
Tim Peters16e3cf52004-10-24 23:45:42 +0000794- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000795 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000796 in MainThread, while the RPCServer is handled by SockThread. This is
797 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000798
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000799- Implemented the 'interrupt' extension module, which allows a subthread
800 to raise a KeyboardInterrupt in the main thread.
801
802- Attempting to save the shell raised an error related to saving
803 breakpoints, which are not implemented in the shell
804
805- Provide a correct message when 'exit' or 'quit' are entered at the
806 IDLE command prompt SF 695861
807
808- Eliminate extra blank line in shell output caused by not flushing
809 stdout when user code ends with an unterminated print. SF 695861
810
811- Moved responsibility for exception formatting (i.e. pruning IDLE internal
812 calls) out of rpc.py into the client and server.
813
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000814- Exit IDLE cleanly even when doing subprocess I/O
815
Tim Peters16e3cf52004-10-24 23:45:42 +0000816- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000817
818- Restart the subprocess if it terminates itself. (VPython programs do that)
819
Tim Peters16e3cf52004-10-24 23:45:42 +0000820- Support subclassing of exceptions, including in the shell, by moving the
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000821 exception formatting to the subprocess.
822
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000823
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000824What's New in IDLEfork 0.9 Alpha 2?
825===================================
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000826*Release date: 27-Jan-2003*
827
828- Updated INSTALL.txt to claify use of the python2 rpm.
829
830- Improved formatting in IDLE Help.
831
832- Run menu: Replace "Run Script" with "Run Module".
833
834- Code encountering an unhandled exception under the debugger now shows
835 the correct traceback, with IDLE internal levels pruned out.
836
837- If an exception occurs entirely in IDLE, don't prune the IDLE internal
838 modules from the traceback displayed.
839
840- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
841
842- IDLE icons will now install correctly even when setup.py is run from the
843 build directory
844
845- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000846
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +0000847- Left cursor move in presence of selected text now moves from left end
848 of the selection.
849
850- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
851 Alt/Meta on some Linux distros.
852
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000853- Change default: IDLE now starts with Python Shell.
854
855- Removed the File Path from the Additional Help Sources scrolled list.
856
Tim Peters16e3cf52004-10-24 23:45:42 +0000857- Add capability to access Additional Help Sources on the web if the
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000858 Help File Path begins with //http or www. (Otherwise local path is
859 validated, as before.)
860
861- Additional Help Sources were not being posted on the Help menu in the
Tim Peters16e3cf52004-10-24 23:45:42 +0000862 order entered. Implement sorting the list by [HelpFiles] 'option'
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000863 number.
864
Tim Peters16e3cf52004-10-24 23:45:42 +0000865- Add Browse button to New Help Source dialog. Arrange to start in
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000866 Python/Doc if platform is Windows, otherwise start in current directory.
867
868- Put the Additional Help Sources directly on the Help menu instead of in
869 an Extra Help cascade menu. Rearrange the Help menu so the Additional
870 Help Sources come last. Update help.txt appropriately.
871
872- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
873
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000874- Uniform capitalization in General tab of ConfigDialog, update the doc string.
875
876- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
877 deleting Additional Help Sources from the user's config file.
878
879- Make configHelpSourceEdit OK button the default and bind <Return>
880
881- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
882 to parents.
883
884- Use os.startfile() to open both Additional Help and Python Help on the
885 Windows platform. The application associated with the file type will act as
886 the viewer. Windows help files (.chm) are now supported via the
887 Settings/General/Additional Help facility.
888
889- If Python Help files are installed locally on Linux, use them instead of
890 accessing python.org.
891
892- Make the methods for finding the Python help docs more robust, and make
Tim Peters16e3cf52004-10-24 23:45:42 +0000893 them work in the installed configuration, also.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000894
895- On the Save Before Run dialog, make the OK button the default. One
896 less mouse action!
897
898- Add a method: EditorWindow.get_geometry() for future use in implementing
899 window location persistence.
900
901- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
902
903- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
904
905- Rearrange the Shell menu to put Stack Viewer entries adjacent.
906
907- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000908 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
909 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000910
911- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000912 shell window menu "Shell/View Restart" with binding F6 to jump to the most
913 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000914
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000915- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000916
917- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
918
919- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
920
921- In installer text, fix reference to Visual Python, should be VPython.
922 Properly credit David Scherer.
923
924- Modified idle, idle.py, idle.pyw to improve exception handling.
925
Steven M. Gavad39993e2001-07-20 01:36:49 +0000926
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000927What's New in IDLEfork 0.9 Alpha 1?
928===================================
Tim Peters16e3cf52004-10-24 23:45:42 +0000929*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +0000930
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000931- First release of major new functionality. For further details refer to
932 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000933
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000934- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000935
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000936- Overhauled the IDLE startup options and revised the idle -h help message,
937 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000938
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000939- Multiple bug fixes and usability enhancements.
940
941- Introduced the new RPC implementation, which includes a debugger. The output
942 of user code is to the shell, and the shell may be used to inspect the
943 environment after the run has finished. (In version 0.8.1 the shell
944 environment was separate from the environment of the user code.)
945
946- Introduced the configuration GUI and a new About dialog.
947
948- Removed David Scherer's Remote Procedure Call code and replaced with Guido
949 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
950 to inspect the environment of code Run from an Edit window. Files removed:
951 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +0000952
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000953--------------------------------------------------------------------
954Refer to HISTORY.txt for additional information on earlier releases.
955--------------------------------------------------------------------