blob: 68d4e937404fcb73cd4ffba8633db440ede26f72 [file] [log] [blame]
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -04001What's New in IDLE 2.7.9?
2=========================
3
Terry Jan Reedyf0ee6722014-12-05 20:49:23 -05004*Release data: 2014-12-07* (projected)
5
6- Issue #16893: Update Idle doc chapter to match current Idle and add new
7 information.
8
9- Issue #3068: Add Idle extension configuration dialog to Options menu.
10 Changes are written to HOME/.idlerc/config-extensions.cfg.
11 Original patch by Tal Einat.
12
13- Issue #16233: A module browser (File : Class Browser, Alt+C) requires a
14 editor window with a filename. When Class Browser is requested otherwise,
15 from a shell, output window, or 'Untitled' editor, Idle no longer displays
16 an error box. It now pops up an Open Module box (Alt+M). If a valid name
17 is entered and a module is opened, a corresponding browser is also opened.
18
19- Issue #4832: Save As to type Python files automatically adds .py to the
20 name you enter (even if your system does not display it). Some systems
21 automatically add .txt when type is Text files.
22
23- Issue #21986: Code objects are not normally pickled by the pickle module.
24 To match this, they are no longer pickled when running under Idle.
25
26- Issue #22221: IDLE now ignores the source encoding declaration on the second
27 line if the first line contains anything except a comment.
28
29- Issue #17390: Adjust Editor window title; remove 'Python',
30 move version to end.
31
32- Issue #14105: Idle debugger breakpoints no longer disappear
33 when inseting or deleting lines.
34
35
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -040036What's New in IDLE 2.7.8?
37=========================
38
39*Release date: 2014-06-29*
40
41- Issue #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav
42 Heblikar.
43
44- Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
45
46- Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
47
48- Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
49 Heblikar.
50
51- Issue #12387: Add missing upper(lower)case versions of default Windows key
52 bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
53
54- Issue #21695: Closing a Find-in-files output window while the search is
55 still in progress no longer closes Idle.
56
57- Issue #18910: Add unittest for textView. Patch by Phil Webster.
58
59- Issue #18292: Add unittest for AutoExpand. Patch by Saihadhav Heblikar.
60
61- Issue #18409: Add unittest for AutoComplete. Patch by Phil Webster.
62
63
64What's New in IDLE 2.7.7?
65=========================
66
67*Release date: 2014-05-31*
68
69- Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin
70 consolidating and improving human-validated tests of Idle. Change other files
71 as needed to work with htest. Running the module as __main__ runs all tests.
72
73- Issue #21139: Change default paragraph width to 72, the PEP 8 recommendation.
74
75- Issue #21284: Paragraph reformat test passes after user changes reformat width.
76
77- Issue #20406: Use Python application icons for Idle window title bars.
78 Patch mostly by Serhiy Storchaka.
79
80- Issue #21029: Occurrences of "print" are now consistently colored as
81 being a keyword (the colorizer doesn't know if print functions are
82 enabled in the source).
83
84- Issue #17721: Remove non-functional configuration dialog help button until we
85 make it actually gives some help when clicked. Patch by Guilherme Simões.
86
87- Issue #17390: Add Python version to Idle editor window title bar.
88 Original patches by Edmond Burnett and Kent Johnson.
89
90- Issue #20058: sys.stdin.readline() in IDLE now always returns only one line.
91
92- Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE
93 no more hangs.
94
95- Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial
96 shell window is present.
97
98- Issue #17654: Ensure IDLE menus are customized properly on OS X for
99 non-framework builds and for all variants of Tk.
100
101
102What's New in IDLE 2.7.6?
103=========================
104
105*Release date: 2013-11-10*
106
107- Issue #19426: Fixed the opening of Python source file with specified encoding.
108
109- Issue #18873: IDLE now detects Python source code encoding only in comment
110 lines.
111
112- Issue #18988: The "Tab" key now works when a word is already autocompleted.
113
114- Issue #18489: Add tests for SearchEngine. Original patch by Phil Webster.
115
116- Issue #18429: Format / Format Paragraph, now works when comment blocks
117 are selected. As with text blocks, this works best when the selection
118 only includes complete lines.
119
120- Issue #18226: Add docstrings and unittests for FormatParagraph.py.
121 Original patches by Todd Rovito and Phil Webster.
122
123- Issue #18279: Format - Strip trailing whitespace no longer marks a file as
124 changed when it has not been changed. This fix followed the addition of a
125 test file originally written by Phil Webster (the issue's main goal).
126
127- Issue #18539: Calltips now work for float default arguments.
128
129- Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
130 Patch by Tal Einat, Roget Serwy, and Todd Rovito.
131
132- Issue #8515: Set __file__ when run file in IDLE.
133 Initial patch by Bruce Frederiksen.
134
135- Issue #5492: Avoid traceback when exiting IDLE caused by a race condition.
136
137- Issue #17511: Keep IDLE find dialog open after clicking "Find Next".
138 Original patch by Sarah K.
139
140- Issue #15392: Create a unittest framework for IDLE.
141 Preliminary patch by Rajagopalasarma Jayakrishnan
142 See Lib/idlelib/idle_test/README.txt for how to run Idle tests.
143
144- Issue #14146: Highlight source line while debugging on Windows.
145
146- Issue #17532: Always include Options menu for IDLE on OS X.
147 Patch by Guilherme Simões.
148
149
Terry Jan Reedyd676a3a2013-03-30 18:50:43 -0400150What's New in IDLE 2.7.5?
151=========================
152
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400153*Release date: 2013-05-12*
154
155- Issue #17838: Allow sys.stdin to be reassigned.
156
157- Issue #14735: Update IDLE docs to omit "Control-z on Windows".
158
159- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit().
160
161- Issue #17657: Show full Tk version in IDLE's about dialog.
162 Patch by Todd Rovito.
163
164- Issue #17613: Prevent traceback when removing syntax colorizer in IDLE.
165
166- Issue #1207589: Backwards-compatibility patch for right-click menu in IDLE.
167
168- Issue #16887: IDLE now accepts Cancel in tabify/untabify dialog box.
169
170- Issue #14254: IDLE now handles readline correctly across shell restarts.
171
172- Issue #17614: IDLE no longer raises exception when quickly closing a file.
173
174- Issue #6698: IDLE now opens just an editor window when configured to do so.
175
176- Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer
177 raises an exception.
178
179- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
180
Terry Jan Reedyd676a3a2013-03-30 18:50:43 -0400181- Issue #17390: Display Python version on Idle title bar.
182 Initial patch by Edmond Burnett.
183
184
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400185What's New in IDLE 2.7.4?
186=========================
187
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400188*Release date: 2013-04-06*
189
190- Issue #17625: In IDLE, close the replace dialog after it is used.
191
192- IDLE was displaying spurious SystemExit tracebacks when running scripts
193 that terminated by raising SystemExit (i.e. unittest and turtledemo).
194
195- Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase
196 interface and support all mandatory methods and properties.
197
198- Issue #16829: IDLE printing no longer fails if there are spaces or other
199 special characters in the file path.
200
201- Issue #16819: IDLE method completion now correctly works for unicode literals.
202
203- Issue #16504: IDLE now catches SyntaxErrors raised by tokenizer. Patch by
204 Roger Serwy.
205
206- Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
207 Patch by Todd Rovito.
208
209- Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog
210 ended with '\'. Patch by Roger Serwy.
211
212- Issue #9803: Don't close IDLE on saving if breakpoint is open.
213 Patch by Roger Serwy.
214
215- Issue #14958: Change IDLE systax highlighting to recognize all string and byte
216 literals currently supported in Python 2.7.
217
218- Issue #14962: Update text coloring in IDLE shell window after changing
219 options. Patch by Roger Serwy.
220
221- Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
222
223- Issue #12510: Attempting to get invalid tooltip no longer closes IDLE.
224 Original patch by Roger Serwy.
225
226- Issue #10365: File open dialog now works instead of crashing
227 even when parent window is closed. Patch by Roger Serwy.
228
229- Issue #14876: Use user-selected font for highlight configuration.
230 Patch by Roger Serwy.
231
232- Issue #14409: IDLE now properly executes commands in the Shell window
233 when it cannot read the normal config files on startup and
234 has to use the built-in default key bindings.
235 There was previously a bug in one of the defaults.
236
237- Issue #3573: IDLE hangs when passing invalid command line args
238 (directory(ies) instead of file(s)) (Patch by Guilherme Polo)
239
240- Issue #5219: Prevent event handler cascade in IDLE.
241
Martin v. Löwise2b56242012-07-25 10:56:22 +0200242- Issue #15318: Prevent writing to sys.stdin.
243
Martin v. Löwisdbde8862012-07-11 08:32:05 +0200244- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
Martin v. Löwise8e4e142012-07-09 21:01:49 +0200245
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400246- Issue #10365: File open dialog now works instead of crashing even when
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400247 parent window is closed while dialog is open.
248
Ned Deily38df5142012-07-30 03:28:22 -0700249- Issue #14018: Update checks for unstable system Tcl/Tk versions on OS X
250 to include versions shipped with OS X 10.7 and 10.8 in addition to 10.6.
251
Ned Deilye3d47122012-10-22 15:13:01 -0700252- Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
253 with certain versions of Tk 8.5. Initial patch by Kevin Walzer.
254
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400255
Andrew Svetlov7c010ee2012-03-21 13:35:08 +0200256What's New in IDLE 2.7.3?
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400257=========================
Andrew Svetlov7c010ee2012-03-21 13:35:08 +0200258
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400259*Release date: 2012-04-09*
260
261- Issue #964437 Make IDLE help window non-modal.
262 Patch by Guilherme Polo and Roger Serwy.
263
264- Issue #13933: IDLE auto-complete did not work with some imported
265 module, like hashlib. (Patch by Roger Serwy)
266
267- Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell.
268 Original patches by Marco Scataglini and Roger Serwy.
269
270- Issue #4625: If IDLE cannot write to its recent file or breakpoint
271 files, display a message popup and continue rather than crash.
272 (original patch by Roger Serwy)
273
274- Issue #8793: Prevent IDLE crash when given strings with invalid hex escape
275 sequences.
276
277- Issue #13296: Fix IDLE to clear compile __future__ flags on shell restart.
278 (Patch by Roger Serwy)
279
Andrew Svetlov8af87292012-03-31 14:34:16 +0300280- Issue #14409: IDLE now properly executes commands in the Shell window
281 when it cannot read the normal config files on startup and
282 has to use the built-in default key bindings.
283 There was previously a bug in one of the defaults.
Andrew Svetlovc37db102012-03-29 19:54:58 +0300284
Andrew Svetlov7c010ee2012-03-21 13:35:08 +0200285- Issue #3573: IDLE hangs when passing invalid command line args
286 (directory(ies) instead of file(s)).
287
288
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400289What's New in IDLE 2.7.2?
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400290=========================
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400291
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400292*Release date: 2011-06-11*
293
294- Issue #11718: IDLE's open module dialog couldn't find the __init__.py
295 file in a package.
296
297- Issue #12590: IDLE editor window now always displays the first line
298 when opening a long file. With Tk 8.5, the first line was hidden.
299
300- Issue #11088: don't crash when using F5 to run a script in IDLE on MacOSX
301 with Tk 8.5.
302
303- Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the
304 menu accelerators for Open Module, Go to Line, and New Indent Width.
305 The accelerators still work but no longer appear in the menu items.
306
307- Issue #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather
308 than the currently problematic Apple-supplied one, when running with the
309 64-/32-bit installer variant.
310
311- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save
312 commands.
313
314- Issue #6075: IDLE on Mac OS X now works with both Carbon AquaTk and
315 Cocoa AquaTk.
316
317- Issue #10404: Use ctl-button-1 on OSX for the context menu in Idle.
318
319- Issue #10107: Warn about unsaved files in IDLE on OSX.
320
321- Issue #10406: Enable Rstrip IDLE extension on OSX (just like on other
322 platforms).
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400323
Kurt B. Kaisera5392452011-05-25 22:36:51 -0400324- Issue #6378: Further adjust idle.bat to start associated Python
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400325
326- Issue #11896: Save on Close failed despite selecting "Yes" in dialog.
327
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400328- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and
329 strange selection behavior. Improve selection extension behaviour.
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400330
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400331- Issue #3851 <Home> toggle non-functional when NumLock set on Windows.
332
333
334What's New in Python 2.7.1?
335===========================
336
337*Release date: 2010-11-27*
338
339- Issue #6378: idle.bat now runs with the appropriate Python version rather than
340 the system default. Patch by Sridhar Ratnakumar.
Kurt B. Kaiser7548bce2011-03-25 17:48:27 -0400341
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400342
Benjamin Peterson743242a2010-07-03 13:49:03 +0000343What's New in IDLE 2.7?
344=======================
Amaury Forgeot d'Arcdd8d8242008-04-21 22:35:30 +0000345
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400346*Release date: 2010-07-03*
347
348- Issue #5150: IDLE's format menu now has an option to strip trailing
349 whitespace.
350
351- Issue #5847: Remove -n switch on "Edit with IDLE" menu item.
Amaury Forgeot d'Arcdd8d8242008-04-21 22:35:30 +0000352
Kurt B. Kaiser106ac462009-05-03 01:03:44 +0000353- idle.py modified and simplified to better support developing experimental
354 versions of IDLE which are not installed in the standard location.
355
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400356- Issue #5559: OutputWindow/PyShell right click menu "Go to file/line"
357 wasn't working with file paths containing spaces.
Kurt B. Kaiser94290d32009-04-26 23:22:11 +0000358
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400359- Issue #5783: Windows: Version string for the .chm help file changed,
360 file not being accessed Patch by Guilherme Polo/
Kurt B. Kaiserf13447f2009-04-23 02:36:01 +0000361
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400362- Issue #1529142: Allow multiple IDLE GUI/subprocess pairs to exist
363 simultaneously. Thanks to David Scherer for suggesting the use of an
364 ephemeral port for the GUI. Patch by Weeble.
Kurt B. Kaiser013d6cc2009-04-04 07:03:48 +0000365
Kurt B. Kaiser4724f402009-04-02 02:44:54 +0000366- Remove port spec from run.py and fix bug where subprocess fails to
367 extract port from command line when warnings are present.
368
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400369- Issue #5129: Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr
370 to handle mixed space/tab properly. Patch by Guilherme Polo.
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400371
Ronald Oussoren8c954842009-01-02 12:59:32 +0000372- Issue #3549: On MacOS the preferences menu was not present
373
Martin v. Löwis7d7e1b72009-01-24 15:45:18 +0000374
375What's New in IDLE 2.6?
376=======================
377
378*Release date: 01-Oct-2008*
379
Amaury Forgeot d'Arcdd8d8242008-04-21 22:35:30 +0000380- Issue #2665: On Windows, an IDLE installation upgraded from an old version
381 would not start if a custom theme was defined.
382
Kurt B. Kaiser93cdae52008-04-27 21:07:41 +0000383- Home / Control-A toggles between left margin and end of leading white
384 space. Patch 1196903 Jeff Shute.
385
Kurt B. Kaiser83101902008-04-27 21:52:19 +0000386- Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.
387
388- Autocompletion of filenames now support alternate separators, e.g. the
389 '/' char on Windows. Patch 2061 Tal Einat.
Kurt B. Kaiser9c5c0af2008-04-27 21:38:05 +0000390
Anthony Baxter78b1a082006-08-18 07:29:02 +0000391What's New in IDLE 2.6a1?
392=========================
393
Barry Warsaw9d225e62008-03-01 03:00:52 +0000394*Release date: 29-Feb-2008*
Kurt B. Kaiserb4aaa762008-01-23 22:19:23 +0000395
Kurt B. Kaiserf05fa332008-02-15 22:25:09 +0000396- Configured selection highlighting colors were ignored; updating highlighting
397 in the config dialog would cause non-Python files to be colored as if they
398 were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
399
Kurt B. Kaisere312cfd2008-02-15 21:56:36 +0000400- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.
401
Kurt B. Kaiserf30ba3d2008-01-23 22:55:26 +0000402- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
403
Kurt B. Kaiserb4aaa762008-01-23 22:19:23 +0000404- Could not open files in .idlerc directory if latter was hidden on Windows.
405 Issue 1743, Issue 1862.
Anthony Baxter78b1a082006-08-18 07:29:02 +0000406
Kurt B. Kaiser28c7bcf2007-12-28 04:18:01 +0000407- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
408
Kurt B. Kaiser20172f92007-10-30 02:38:54 +0000409- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
410 of tabs. Patch 1612746 Tal Einat.
411
Kurt B. Kaiser60d58402007-10-28 19:03:59 +0000412- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
413
Kurt B. Kaiser631fee62007-10-10 01:06:47 +0000414- Show paste position if > 80 col. Patch 1659326 Tal Einat.
415
Kurt B. Kaisercca976b2007-10-10 00:55:40 +0000416- Update cursor color without restarting. Patch 1725576 Tal Einat.
417
Kurt B. Kaiserc8f65e62007-10-09 19:31:30 +0000418- Allow keyboard interrupt only when user code is executing in subprocess.
419 Patch 1225 Tal Einat (reworked from IDLE-Spoon).
420
Kurt B. Kaisere3fde8f2007-10-04 03:11:12 +0000421- configDialog cleanup. Patch 1730217 Tal Einat.
422
Kurt B. Kaiserd5f49102007-10-04 02:53:07 +0000423- textView cleanup. Patch 1718043 Tal Einat.
424
Kurt B. Kaiser0b634ef2007-10-04 02:09:17 +0000425- Clean up EditorWindow close.
426
Kurt B. Kaiserac45aff2008-02-14 00:08:55 +0000427- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
428
429- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
430
431- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
432 option in config-extensions w/o a value. Patch #1672481, Tal Einat
433
Kurt B. Kaiser209de1f2007-02-08 22:58:18 +0000434- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
435 mouse and cursor selection in ACWindow implemented; double Tab inserts
436 current selection and closes ACW (similar to double-click and Return); scroll
437 wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
438
Kurt B. Kaiserca30acf2007-02-07 03:39:41 +0000439- AutoCompleteWindow moved below input line, will move above if there
440 isn't enough space. Patch 1621265 Tal Einat
441
Kurt B. Kaiserecf796e2007-02-05 23:02:16 +0000442- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
443 Suggested solution by Christos Georgiou, Bug 791968.
444
Kurt B. Kaiser90f84922007-02-05 06:03:18 +0000445- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
446
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000447- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
448
Martin v. Löwis8609da92006-12-03 09:54:46 +0000449- Patch #1362975: Rework CodeContext indentation algorithm to
450 avoid hard-coding pixel widths.
451
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000452- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
453 is started with that option.
454
Kurt B. Kaiser0b634ef2007-10-04 02:09:17 +0000455- Honor the "Cancel" action in the save dialog (Debian bug #299092)
456
Kurt B. Kaiserc426ffc2006-10-01 21:16:45 +0000457- Some syntax errors were being caught by tokenize during the tabnanny
458 check, resulting in obscure error messages. Do the syntax check
459 first. Bug 1562716, 1562719
460
Anthony Baxter78b1a082006-08-18 07:29:02 +0000461- IDLE's version number takes a big jump to match the version number of
462 the Python release of which it's a part.
463
464
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000465What's New in IDLE 1.2?
466=======================
467
468*Release date: 19-SEP-2006*
469
470
Kurt B. Kaiser312e5af2006-08-09 16:46:15 +0000471What's New in IDLE 1.2c1?
472=========================
473
Anthony Baxterb4096662006-08-16 03:42:26 +0000474*Release date: 17-AUG-2006*
Kurt B. Kaiser312e5af2006-08-09 16:46:15 +0000475
Kurt B. Kaiser7ae35482006-08-16 21:45:59 +0000476- File menu hotkeys: there were three 'p' assignments. Reassign the
477 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
478 Shell hotkey from 's' to 'l'.
479
Kurt B. Kaiserd112bc72006-08-16 05:01:42 +0000480- IDLE honors new quit() and exit() commands from site.py Quitter() object.
481 Patch 1540892, Jim Jewett
482
483- The 'with' statement is now a Code Context block opener.
484 Patch 1540851, Jim Jewett
Kurt B. Kaiser2a7ff292006-08-16 03:15:26 +0000485
Kurt B. Kaisercd3d8be2006-08-10 17:11:09 +0000486- Retrieval of previous shell command was not always preserving indentation
487 (since 1.2a1) Patch 1528468 Tal Einat.
488
Kurt B. Kaiser1fe9ca02006-08-10 01:41:17 +0000489- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
490
Kurt B. Kaiser53f2b5f2006-08-09 20:34:46 +0000491- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
492
Andrew M. Kuchlingfaeeab72006-08-09 18:23:14 +0000493- When used w/o subprocess, all exceptions were preceded by an error
Kurt B. Kaiser312e5af2006-08-09 16:46:15 +0000494 message claiming they were IDLE internal errors (since 1.2a1).
495
Anthony Baxter5d32a9f2006-08-02 07:43:09 +0000496What's New in IDLE 1.2b3?
Kurt B. Kaiser4b7e35b2006-07-18 04:03:16 +0000497=========================
498
Anthony Baxter5d32a9f2006-08-02 07:43:09 +0000499*Release date: 03-AUG-2006*
Kurt B. Kaiser4b7e35b2006-07-18 04:03:16 +0000500
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000501- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
502
503- Bug #1517990: IDLE keybindings on MacOS X now work correctly
504
505- Bug #1517996: IDLE now longer shows the default Tk menu when a
506 path browser, class browser or debugger is the frontmost window on MacOS X
507
Kurt B. Kaisera2946a42006-07-24 18:05:51 +0000508- EditorWindow.test() was failing. Bug 1417598
509
Kurt B. Kaiserb3c4d162006-07-24 17:13:23 +0000510- EditorWindow failed when used stand-alone if sys.ps1 not set.
511 Bug 1010370 Dave Florek
512
Kurt B. Kaiserc6bacd52006-07-23 04:19:49 +0000513- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
514
Kurt B. Kaiser43476e02006-07-20 22:22:52 +0000515- Avoid occasional failure to detect closing paren properly.
516 Patch 1407280 Tal Einat
517
Kurt B. Kaiser4b7e35b2006-07-18 04:03:16 +0000518- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
519
520- Colorizer now handles #<builtin> correctly, also unicode strings and
521 'as' keyword in comment directly following import command. Closes 1325071.
522 Patch 1479219 Tal Einat
523
Anthony Baxter70e8e872006-07-10 07:41:04 +0000524What's New in IDLE 1.2b2?
525=========================
526
527*Release date: 11-JUL-2006*
528
Anthony Baxterd1136802006-06-19 12:04:15 +0000529What's New in IDLE 1.2b1?
530=========================
531
532*Release date: 20-JUN-2006*
533
Anthony Baxterc7d00322006-04-27 02:11:24 +0000534What's New in IDLE 1.2a2?
535=========================
536
537*Release date: 27-APR-2006*
538
Anthony Baxterebed3f62006-04-03 15:03:44 +0000539What's New in IDLE 1.2a1?
540=========================
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000541
Anthony Baxterebed3f62006-04-03 15:03:44 +0000542*Release date: 05-APR-2006*
Kurt B. Kaiser5c6e0a12005-11-22 21:09:37 +0000543
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000544- Patch #1162825: Support non-ASCII characters in IDLE window titles.
545
Kurt B. Kaiser70f05c52006-03-19 20:40:05 +0000546- Source file f.flush() after writing; trying to avoid lossage if user
547 kills GUI.
548
Kurt B. Kaiser5c6e0a12005-11-22 21:09:37 +0000549- Options / Keys / Advanced dialog made functional. Also, allow binding
550 of 'movement' keys.
551
552- 'syntax' patch adds improved calltips and a new class attribute listbox.
553 MultiCall module allows binding multiple actions to an event.
554 Patch 906702 Noam Raphael
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000555
Kurt B. Kaiserb61602c2005-11-15 07:20:06 +0000556- Better indentation after first line of string continuation.
557 IDLEfork Patch 681992, Noam Raphael
558
Kurt B. Kaiser389482c2005-10-03 20:08:25 +0000559- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
560
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000561- Increased performance in CodeContext extension Patch 936169 Noam Raphael
562
Kurt B. Kaiser2618c7f2005-08-23 02:27:23 +0000563- Mac line endings were incorrect when pasting code from some browsers
564 when using X11 and the Fink distribution. Python Bug 1263656.
565
Kurt B. Kaisera7daba62005-06-19 18:56:15 +0000566- <Enter> when cursor is on a previous command retrieves that command. Instead
567 of replacing the input line, the previous command is now appended to the
568 input line. Indentation is preserved, and undo is enabled.
569 Patch 1196917 Jeff Shute
570
Kurt B. Kaiserca7329c2005-06-12 05:19:23 +0000571- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
572 the Untabify command.
573
574- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
575 Patch 1196980 Jeff Shute
576
Kurt B. Kaiserdf506ea2005-06-12 04:33:30 +0000577- New files are colorized by default, and colorizing is removed when
578 saving as non-Python files. Patch 1196895 Jeff Shute
579 Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
580
Kurt B. Kaiser935ea9a2005-05-10 03:44:24 +0000581- Improve subprocess link error notification.
582
Kurt B. Kaiser20345fb2005-05-05 23:29:54 +0000583- run.py: use Queue's blocking feature instead of sleeping in the main
584 loop. Patch # 1190163 Michiel de Hoon
585
Kurt B. Kaiser0676dfd2005-02-03 01:37:14 +0000586- Add config-main option to make the 'history' feature non-cyclic.
587 Default remains cyclic. Python Patch 914546 Noam Raphael.
588
Kurt B. Kaiseracdef852005-01-31 03:34:26 +0000589- Removed ability to configure tabs indent from Options dialog. This 'feature'
590 has never worked and no one has complained. It is still possible to set a
591 default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
592 tabs for the current EditorWindow via the Format menu) but IDLE will
593 encourage indentation via spaces.
594
595- Enable setting the indentation width using the Options dialog.
596 Bug # 783877
597
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000598- Add keybindings for del-word-left and del-word-right.
599
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000600- Discourage using an indent width other than 8 when using tabs to indent
601 Python code.
602
603- Restore use of EditorWindow.set_indentation_params(), was dead code since
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000604 Autoindent was merged into EditorWindow. This allows IDLE to conform to the
605 indentation width of a loaded file. (But it still will not switch to tabs
606 even if the file uses tabs.) Any change in indent width is local to that
607 window.
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000608
609- Add Tabnanny check before Run/F5, not just when Checking module.
610
Kurt B. Kaiserb00e89f2005-01-18 00:54:58 +0000611- If an extension can't be loaded, print warning and skip it instead of
612 erroring out.
613
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000614- Improve error handling when .idlerc can't be created (warn and exit).
615
Kurt B. Kaiser70f05c52006-03-19 20:40:05 +0000616- The GUI was hanging if the shell window was closed while a raw_input()
Kurt B. Kaiser5c3df352004-12-23 04:20:59 +0000617 was pending. Restored the quit() of the readline() mainloop().
618 http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
619
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000620- The remote procedure call module rpc.py can now access data attributes of
621 remote registered objects. Changes to these attributes are local, however.
622
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000623What's New in IDLE 1.1?
624=======================
Kurt B. Kaisere9535112004-11-19 15:46:49 +0000625
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000626*Release date: 30-NOV-2004*
Kurt B. Kaisere9535112004-11-19 15:46:49 +0000627
628- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
629 stuck subprocess MainThread because only the SocketThread was exiting.
630
Anthony Baxterb0c66302004-11-04 05:23:17 +0000631What's New in IDLE 1.1b3/rc1?
632=============================
633
Anthony Baxter5cc727a2004-11-18 12:32:27 +0000634*Release date: 18-NOV-2004*
Anthony Baxterb0c66302004-11-04 05:23:17 +0000635
Kurt B. Kaiser03562a52004-11-16 21:31:08 +0000636- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
637 button) caused IDLE to fail on restart (no new keyset was created in
638 config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
639
Kurt B. Kaiserf7a88992004-11-13 21:05:58 +0000640- A change to the linecache.py API caused IDLE to exit when an exception was
641 raised while running without the subprocess (-n switch). Python Bug 1063840.
642
Tim Peters16e3cf52004-10-24 23:45:42 +0000643What's New in IDLE 1.1b2?
644=========================
645
Anthony Baxter9f41f3a2004-11-03 06:21:37 +0000646*Release date: 03-NOV-2004*
Tim Peters16e3cf52004-10-24 23:45:42 +0000647
648- When paragraph reformat width was made configurable, a bug was
649 introduced that caused reformatting of comment blocks to ignore how
650 far the block was indented, effectively adding the indentation width
651 to the reformat width. This has been repaired, and the reformat
652 width is again a bound on the total width of reformatted lines.
653
Anthony Baxter6a587c12004-10-15 08:07:21 +0000654What's New in IDLE 1.1b1?
655=========================
656
657*Release date: 15-OCT-2004*
658
659
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000660What's New in IDLE 1.1a3?
661=========================
662
663*Release date: 02-SEP-2004*
664
665- Improve keyboard focus binding, especially in Windows menu. Improve
666 window raising, especially in the Windows menu and in the debugger.
667 IDLEfork 763524.
668
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000669- If user passes a non-existent filename on the commandline, just
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000670 open a new file, don't raise a dialog. IDLEfork 854928.
671
672
Kurt B. Kaiser8aa23922004-07-15 04:54:57 +0000673What's New in IDLE 1.1a2?
674=========================
675
Anthony Baxterff347ca2004-08-05 07:21:01 +0000676*Release date: 05-AUG-2004*
Kurt B. Kaiser8aa23922004-07-15 04:54:57 +0000677
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000678- EditorWindow.py was not finding the .chm help file on Windows. Typo
679 at Rev 1.54. Python Bug 990954
680
Kurt B. Kaiser8aa23922004-07-15 04:54:57 +0000681- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
682 (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
683
684
Anthony Baxter3210b362004-07-08 05:59:43 +0000685What's New in IDLE 1.1a1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000686=========================
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000687
Anthony Baxter3210b362004-07-08 05:59:43 +0000688*Release date: 08-JUL-2004*
Kurt B. Kaisere9802a32004-01-02 04:04:04 +0000689
Kurt B. Kaiser49a5fe12004-07-04 01:25:56 +0000690- Redirect the warning stream to the shell during the ScriptBinding check of
691 user code and format the warning similarly to an exception for both that
692 check and for runtime warnings raised in the subprocess.
693
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000694- CodeContext hint pane visibility state is now persistent across sessions.
695 The pane no longer appears in the shell window. Added capability to limit
696 extensions to shell window or editor windows. Noam Raphael addition
697 to Patch 936169.
698
699- Paragraph reformat width is now a configurable parameter in the
700 Options GUI.
701
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000702- New Extension: CodeContext. Provides block structuring hints for code
703 which has scrolled above an edit window. Patch 936169 Noam Raphael.
704
Kurt B. Kaisercf6f1b62004-04-11 03:16:07 +0000705- If nulls somehow got into the strings in recent-files.lst
706 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
707
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000708- If the normal background is changed via Configure/Highlighting, it will
709 update immediately, thanks to the previously mentioned patch by Nigel Rowe.
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +0000710
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000711- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000712 This also fixed IDLEfork bug [ 693418 ] Normal text background color not
713 refreshed and Python bug [897872 ] Unknown color name on HP-UX
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000714
Kurt B. Kaiserd6ab77d2004-01-21 19:21:11 +0000715- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
716 to the execution server. The return of the OK response from the subprocess
717 initialization was interfering and causing the sending socket to be not
718 ready. Add an IO ready test to fix this. Moved the polling IO ready test
719 into pollpacket().
720
721- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
722
Kurt B. Kaiseraf3eb872004-01-21 18:54:30 +0000723- Added a Tk error dialog to run.py inform the user if the subprocess can't
724 connect to the user GUI process. Added a timeout to the GUI's listening
725 socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
726 the port or connect to the subprocess. Clean up error handling during
727 connection initiation phase. This is an update of Python Patch 778323.
728
Tim Peters16e3cf52004-10-24 23:45:42 +0000729- Print correct exception even if source file changed since shell was
Kurt B. Kaisere9802a32004-01-02 04:04:04 +0000730 restarted. IDLEfork Patch 869012 Noam Raphael
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000731
Kurt B. Kaiser2303b1c2003-11-24 05:26:16 +0000732- Keybindings with the Shift modifier now work correctly. So do bindings which
733 use the Space key. Limit unmodified user keybindings to the function keys.
734 Python Bug 775353, IDLEfork Bugs 755647, 761557
735
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000736- After an exception, run.py was not setting the exception vector. Noam
Tim Peters16e3cf52004-10-24 23:45:42 +0000737 Raphael suggested correcting this so pdb's postmortem pm() would work.
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000738 IDLEfork Patch 844675
739
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000740- IDLE now does not fail to save the file anymore if the Tk buffer is not a
741 Unicode string, yet eol_convention is. Python Bugs 774680, 788378
742
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000743- IDLE didn't start correctly when Python was installed in "Program Files" on
744 W2K and XP. Python Bugs 780451, 784183
745
746- config-main.def documentation incorrectly referred to idle- instead of
747 config- filenames. SF 782759 Also added note about .idlerc location.
748
749
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000750What's New in IDLE 1.0?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000751=======================
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000752
753*Release date: 29-Jul-2003*
754
Kurt B. Kaiserb00e89f2005-01-18 00:54:58 +0000755- Added a banner to the shell discussing warnings possibly raised by personal
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000756 firewall software. Added same comment to README.txt.
757
758
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000759What's New in IDLE 1.0 release candidate 2?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000760===========================================
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000761
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000762*Release date: 24-Jul-2003*
763
764- Calltip error when docstring was None Python Bug 775541
765
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000766
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000767What's New in IDLE 1.0 release candidate 1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000768===========================================
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000769
770*Release date: 18-Jul-2003*
Kurt B. Kaisercca91222003-07-16 03:10:43 +0000771
772- Updated extend.txt, help.txt, and config-extensions.def to correctly
773 reflect the current status of the configuration system. Python Bug 768469
774
775- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
776
777- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
778 Python Patch 768187
779
780- Break or continue statements outside a loop were causing IDLE crash
781 Python Bug 767794
782
783- Convert Unicode strings from readline to IOBinding.encoding. Also set
784 sys.std{in|out|err}.encoding, for both the local and the subprocess case.
785 SF IDLEfork patch 682347.
786
787
788What's New in IDLE 1.0b2?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000789=========================
Kurt B. Kaisercca91222003-07-16 03:10:43 +0000790
791*Release date: 29-Jun-2003*
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000792
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000793- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
794 file Latin-1.
795
796- Updated the About dialog to reflect re-integration into Python. Provide
797 buttons to display Python's NEWS, License, and Credits, plus additional
798 buttons for IDLE's README and NEWS.
799
800- TextViewer() now has a third parameter which allows inserting text into the
801 viewer instead of reading from a file.
802
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000803- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
804 IDLEfork modified to install in the Python environment. The code in the
805 interrupt module has been moved to thread.interrupt_main(). )
806
807- Printing the Shell window was failing if it was not saved first SF 748975
808
809- When using the Search in Files dialog, if the user had a selection
810 highlighted in his Editor window, insert it into the dialog search field.
811
812- The Python Shell entry was disappearing from the Windows menu.
813
814- Update the Windows file list when a file name change occurs
815
816- Change to File / Open Module: always pop up the dialog, using the current
817 selection as the default value. This is easier to use habitually.
818
819- Avoided a problem with starting the subprocess when 'localhost' doesn't
820 resolve to the user's loopback interface. SF 747772
821
822- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
823 improved notification of Tabnanny Token Error.
824
825- File / New will by default save in the directory of the Edit window from
826 which it was initiated. SF 748973 Guido van Rossum patch.
827
Steven M. Gavad39993e2001-07-20 01:36:49 +0000828
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +0000829What's New in IDLEfork 0.9b1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000830=============================
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000831
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000832*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000833
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000834- The current working directory of the execution environment (and shell
Tim Peters16e3cf52004-10-24 23:45:42 +0000835 following completion of execution) is now that of the module being run.
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000836
837- Added the delete-exitfunc option to config-main.def. (This option is not
838 included in the Options dialog.) Setting this to True (the default) will
839 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
840
841- IDLE now preserves the line ending codes when editing a file produced on
842 a different platform. SF 661759, SF 538584
843
844- Reduced default editor font size to 10 point and increased window height
845 to provide a better initial impression on Windows.
846
847- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
848 the default font when first installed on Windows. SF 661676
849
850- Added Autosave feature: when user runs code from edit window, if the file
851 has been modified IDLE will silently save it if Autosave is enabled. The
852 option is set in the Options dialog, and the default is to prompt the
853 user to save the file. SF 661318 Bruce Sherwood patch.
854
855- Improved the RESTART annotation in the shell window when the user restarts
856 the shell while it is generating output. Also improved annotation when user
857 repeatedly hammers the Ctrl-F6 restart.
858
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000859- Allow IDLE to run when not installed and cwd is not the IDLE directory
860 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
861
862- When a module is run from an EditorWindow: if its directory is not in
863 sys.path, prepend it. This allows the module to import other modules in
864 the same directory. Do the same for a script run from the command line.
865
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000866- Correctly restart the subprocess if it is running user code and the user
867 attempts to run some other module or restarts the shell. Do the same if
868 the link is broken and it is possible to restart the subprocess and re-
869 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000870
871- Improved exception reporting when running commands or scripts from the
872 command line.
873
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000874- Added a -n command line switch to start IDLE without the subprocess.
875 Removed the Shell menu when running in that mode. Updated help messages.
876
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000877- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000878 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000879
880- Restore the ability to run without the subprocess. This can be important for
881 some platforms or configurations. (Running without the subprocess allows the
882 debugger to trace through parts of IDLE itself, which may or may not be
883 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000884 reload/import tricks must be use if user source code is changed.) This is
885 helpful for developing IDLE using IDLE, because one instance can be used to
886 edit the code and a separate instance run to test changes. (Multiple
887 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000888
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000889- Improve the error message a user gets when saving a file with non-ASCII
890 characters and no source encoding is specified. Done by adding a dialog
891 'EncodingMessage', which contains the line to add in a fixed-font entry
892 widget, and which has a button to add that line to the file automatically.
893 Also, add a configuration option 'EditorWindow/encoding', which has three
894 possible values: none, utf-8, and locale. None is the default: IDLE will show
895 this dialog when non-ASCII characters are encountered. utf-8 means that files
896 with non-ASCII characters are saved as utf-8-with-bom. locale means that
897 files are saved in the locale's encoding; the dialog is only displayed if the
898 source contains characters outside the locale's charset. SF 710733 - Loewis
899
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000900- Improved I/O response by tweaking the wait parameter in various
901 calls to signal.signal().
902
Tim Peters16e3cf52004-10-24 23:45:42 +0000903- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000904 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000905 in MainThread, while the RPCServer is handled by SockThread. This is
906 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000907
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000908- Implemented the 'interrupt' extension module, which allows a subthread
909 to raise a KeyboardInterrupt in the main thread.
910
911- Attempting to save the shell raised an error related to saving
912 breakpoints, which are not implemented in the shell
913
914- Provide a correct message when 'exit' or 'quit' are entered at the
915 IDLE command prompt SF 695861
916
917- Eliminate extra blank line in shell output caused by not flushing
918 stdout when user code ends with an unterminated print. SF 695861
919
920- Moved responsibility for exception formatting (i.e. pruning IDLE internal
921 calls) out of rpc.py into the client and server.
922
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000923- Exit IDLE cleanly even when doing subprocess I/O
924
Tim Peters16e3cf52004-10-24 23:45:42 +0000925- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000926
927- Restart the subprocess if it terminates itself. (VPython programs do that)
928
Tim Peters16e3cf52004-10-24 23:45:42 +0000929- Support subclassing of exceptions, including in the shell, by moving the
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000930 exception formatting to the subprocess.
931
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000932
933
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000934What's New in IDLEfork 0.9 Alpha 2?
935===================================
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000936
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000937*Release date: 27-Jan-2003*
938
939- Updated INSTALL.txt to claify use of the python2 rpm.
940
941- Improved formatting in IDLE Help.
942
943- Run menu: Replace "Run Script" with "Run Module".
944
945- Code encountering an unhandled exception under the debugger now shows
946 the correct traceback, with IDLE internal levels pruned out.
947
948- If an exception occurs entirely in IDLE, don't prune the IDLE internal
949 modules from the traceback displayed.
950
951- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
952
953- IDLE icons will now install correctly even when setup.py is run from the
954 build directory
955
956- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000957
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +0000958- Left cursor move in presence of selected text now moves from left end
959 of the selection.
960
961- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
962 Alt/Meta on some Linux distros.
963
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000964- Change default: IDLE now starts with Python Shell.
965
966- Removed the File Path from the Additional Help Sources scrolled list.
967
Tim Peters16e3cf52004-10-24 23:45:42 +0000968- Add capability to access Additional Help Sources on the web if the
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000969 Help File Path begins with //http or www. (Otherwise local path is
970 validated, as before.)
971
972- Additional Help Sources were not being posted on the Help menu in the
Tim Peters16e3cf52004-10-24 23:45:42 +0000973 order entered. Implement sorting the list by [HelpFiles] 'option'
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000974 number.
975
Tim Peters16e3cf52004-10-24 23:45:42 +0000976- Add Browse button to New Help Source dialog. Arrange to start in
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000977 Python/Doc if platform is Windows, otherwise start in current directory.
978
979- Put the Additional Help Sources directly on the Help menu instead of in
980 an Extra Help cascade menu. Rearrange the Help menu so the Additional
981 Help Sources come last. Update help.txt appropriately.
982
983- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
984
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000985- Uniform capitalization in General tab of ConfigDialog, update the doc string.
986
987- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
988 deleting Additional Help Sources from the user's config file.
989
990- Make configHelpSourceEdit OK button the default and bind <Return>
991
992- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
993 to parents.
994
995- Use os.startfile() to open both Additional Help and Python Help on the
996 Windows platform. The application associated with the file type will act as
997 the viewer. Windows help files (.chm) are now supported via the
998 Settings/General/Additional Help facility.
999
1000- If Python Help files are installed locally on Linux, use them instead of
1001 accessing python.org.
1002
1003- Make the methods for finding the Python help docs more robust, and make
Tim Peters16e3cf52004-10-24 23:45:42 +00001004 them work in the installed configuration, also.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001005
1006- On the Save Before Run dialog, make the OK button the default. One
1007 less mouse action!
1008
1009- Add a method: EditorWindow.get_geometry() for future use in implementing
1010 window location persistence.
1011
1012- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
1013
1014- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
1015
1016- Rearrange the Shell menu to put Stack Viewer entries adjacent.
1017
1018- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001019 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
1020 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001021
1022- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001023 shell window menu "Shell/View Restart" with binding F6 to jump to the most
1024 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001025
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001026- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001027
1028- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
1029
1030- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
1031
1032- In installer text, fix reference to Visual Python, should be VPython.
1033 Properly credit David Scherer.
1034
1035- Modified idle, idle.py, idle.pyw to improve exception handling.
1036
Steven M. Gavad39993e2001-07-20 01:36:49 +00001037
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001038What's New in IDLEfork 0.9 Alpha 1?
1039===================================
Steven M. Gavad39993e2001-07-20 01:36:49 +00001040
Tim Peters16e3cf52004-10-24 23:45:42 +00001041*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +00001042
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001043- First release of major new functionality. For further details refer to
1044 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001045
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001046- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001047
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001048- Overhauled the IDLE startup options and revised the idle -h help message,
1049 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001050
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001051- Multiple bug fixes and usability enhancements.
1052
1053- Introduced the new RPC implementation, which includes a debugger. The output
1054 of user code is to the shell, and the shell may be used to inspect the
1055 environment after the run has finished. (In version 0.8.1 the shell
1056 environment was separate from the environment of the user code.)
1057
1058- Introduced the configuration GUI and a new About dialog.
1059
1060- Removed David Scherer's Remote Procedure Call code and replaced with Guido
1061 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
1062 to inspect the environment of code Run from an Edit window. Files removed:
1063 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +00001064
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001065--------------------------------------------------------------------
1066Refer to HISTORY.txt for additional information on earlier releases.
1067--------------------------------------------------------------------
David Scherer7aced172000-08-15 01:13:23 +00001068
1069
David Scherer7aced172000-08-15 01:13:23 +00001070
1071
David Scherer7aced172000-08-15 01:13:23 +00001072