blob: 3053234f65d890a9bba66c467b113b56f57894a9 [file] [log] [blame]
Terry Jan Reedy094338e2016-06-26 18:20:14 -04001What's New in IDLE 2.7.13?
2==========================
3*Release date: 2017-01-01?*
4
Terry Jan Reedyad7a9ea2016-09-28 21:55:33 -04005- Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
6 Patch by Roger Serwy, updated by Bayard Randel.
7
Terry Jan Reedy8b7aff82016-09-10 16:24:31 -04008- Issue #27922: Stop IDLE tests from 'flashing' gui widgets on the screen.
9
10- Issue #17642: add larger font sizes for classroom projection.
11
12- Add version to title of IDLE help window.
13
14- Issue #25564: In section on IDLE -- console differences, mention that
15 using exec means that __builtins__ is defined for each statement.
16
Terry Jan Reedy7a2a5862016-08-20 21:40:55 -040017- Issue #27714: text_textview and test_autocomplete now pass when re-run
18 in the same process. This occurs when test_idle fails when run with the
Terry Jan Reedy7ff1b622016-08-21 00:18:49 -040019 -w option but without -jn. Fix warning from test_config.
Terry Jan Reedy7a2a5862016-08-20 21:40:55 -040020
21- Issue #27452: add line counter and crc to IDLE configHandler test dump.
22
Terry Jan Reedy094338e2016-06-26 18:20:14 -040023- Issue #27365: Allow non-ascii chars in IDLE NEWS.txt, for contributor names.
24
25- Issue #27245: IDLE: Cleanly delete custom themes and key bindings.
26 Previously, when IDLE was started from a console or by import, a cascade
27 of warnings was emitted. Patch by Serhiy Storchaka.
28
29
Terry Jan Reedyf50417b2016-05-30 01:02:28 -040030What's New in IDLE 2.7.12?
31==========================
Terry Jan Reedy094338e2016-06-26 18:20:14 -040032*Release date: 2015-06-25*
Terry Jan Reedyf50417b2016-05-30 01:02:28 -040033
Terry Jan Reedy391f1a42016-06-11 04:31:18 -040034- Issue #5124: Paste with text selected now replaces the selection on X11.
35 This matches how paste works on Windows, Mac, most modern Linux apps,
36 and ttk widgets. Original patch by Serhiy Storchaka.
37
Terry Jan Reedy05837ec2016-06-07 15:33:47 -040038- Issue #24759: Make clear in idlelib.idle_test.__init__ that the directory
39 is a private implementation of test.test_idle and tool for maintainers.
40
Terry Jan Reedyf50417b2016-05-30 01:02:28 -040041- Issue #26673: When tk reports font size as 0, change to size 10.
42 Such fonts on Linux prevented the configuration dialog from opening.
43
44- Issue #27044: Add ConfigDialog.remove_var_callbacks to stop memory leaks.
45
46- In the 'IDLE-console differences' section of the IDLE doc, clarify
47 how running with IDLE affects sys.modules and the standard streams.
48
49- Issue #25507: fix incorrect change in IOBinding that prevented printing.
50 Change also prevented saving shell window with non-ascii characters.
51 Augment IOBinding htest to include all major IOBinding functions.
52
53- Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION
54 MARK in README.txt and open this and NEWS.txt with 'ascii'.
55 Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'.
56
57- Issue #26417: Prevent spurious errors and incorrect defaults when
58 installing IDLE 2.7 on OS X: default configuration settings are
59 no longer installed from OS X specific copies.
60
61
Terry Jan Reedyea428762015-08-16 23:22:32 -040062What's New in IDLE 2.7.11?
Terry Jan Reedye4679e42015-11-21 13:31:00 -050063==========================
64*Release date: 2015-12-06*
65
66- Issue 15348: Stop the debugger engine (normally in a user process)
67 before closing the debugger window (running in the IDLE process).
68 This prevents the RuntimeErrors that were being caught and ignored.
69
70- Issue #24455: Prevent IDLE from hanging when a) closing the shell while the
71 debugger is active (15347); b) closing the debugger with the [X] button
72 (15348); and c) activating the debugger when already active (24455).
73 The patch by Mark Roseman does this by making two changes.
74 1. Suspend and resume the gui.interaction method with the tcl vwait
75 mechanism intended for this purpose (instead of root.mainloop & .quit).
76 2. In gui.run, allow any existing interaction to terminate first.
77
78- Change 'The program' to 'Your program' in an IDLE 'kill program?' message
79 to make it clearer that the program referred to is the currently running
80 user program, not IDLE itself.
81
82- Issue #24750: Improve the appearance of the IDLE editor window status bar.
83 Patch by Mark Roseman.
84
85- Issue #25313: Change the handling of new built-in text color themes to better
86 address the compatibility problem introduced by the addition of IDLE Dark.
87 Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
88
89- Issue #24782: Extension configuration is now a tab in the IDLE Preferences
90 dialog rather than a separate dialog. The former tabs are now a sorted
91 list. Patch by Mark Roseman.
92
93- Issue #22726: Re-activate the config dialog help button with some content
94 about the other buttons and the new IDLE Dark theme.
Terry Jan Reedyea428762015-08-16 23:22:32 -040095
Terry Jan Reedy1b6333a2015-10-04 01:14:45 -040096- Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme.
97 It is more or less IDLE Classic inverted, with a cobalt blue background.
98 Strings, comments, keywords, ... are still green, red, orange, ... .
Terry Jan Reedye4679e42015-11-21 13:31:00 -050099 To use it with IDLEs released before November 2015, hit the
100 'Save as New Custom Theme' button and enter a new name,
101 such as 'Custom Dark'. The custom theme will work with any IDLE
102 release, and can be modified.
Terry Jan Reedy1b6333a2015-10-04 01:14:45 -0400103
104- Issue #25224: README.txt is now an idlelib index for IDLE developers and
Terry Jan Reedye4679e42015-11-21 13:31:00 -0500105 curious users. The previous user content is now in the IDLE doc chapter.
106 'IDLE' now means 'Integrated Development and Learning Environment'.
Terry Jan Reedy1b6333a2015-10-04 01:14:45 -0400107
108- Issue #24820: Users can now set breakpoint colors in
109 Settings -> Custom Highlighting. Original patch by Mark Roseman.
110
Terry Jan Reedyda100172015-09-28 23:38:46 -0400111- Issue #24972: Inactive selection background now matches active selection
Terry Jan Reedye4679e42015-11-21 13:31:00 -0500112 background, as configured by users, on all systems. Found items are now
Terry Jan Reedyda100172015-09-28 23:38:46 -0400113 always highlighted on Windows. Initial patch by Mark Roseman.
114
115- Issue #24570: Idle: make calltip and completion boxes appear on Macs
116 affected by a tk regression. Initial patch by Mark Roseman.
117
118- Issue #24988: Idle ScrolledList context menus (used in debugger)
119 now work on Mac Aqua. Patch by Mark Roseman.
120
121- Issue #24801: Make right-click for context menu work on Mac Aqua.
122 Patch by Mark Roseman.
123
124- Issue #25173: Associate tkinter messageboxes with a specific widget.
125 For Mac OSX, make them a 'sheet'. Patch by Mark Roseman.
126
127- Issue #25198: Enhance the initial html viewer now used for Idle Help.
128 * Properly indent fixed-pitch text (patch by Mark Roseman).
129 * Give code snippet a very Sphinx-like light blueish-gray background.
130 * Re-use initial width and height set by users for shell and editor.
131 * When the Table of Contents (TOC) menu is used, put the section header
Terry Jan Reedye4679e42015-11-21 13:31:00 -0500132 at the top of the screen.
Terry Jan Reedyda100172015-09-28 23:38:46 -0400133
134- Issue #25225: Condense and rewrite Idle doc section on text colors.
135
136- Issue #21995: Explain some differences between IDLE and console Python.
137
138- Issue #22820: Explain need for *print* when running file from Idle editor.
139
140- Issue #25224: Doc: augment Idle feature list and no-subprocess section.
141
142- Issue #25219: Update doc for Idle command line options.
143 Some were missing and notes were not correct.
144
Terry Jan Reedy4dd78872015-09-21 19:28:18 -0400145- Issue #24861: Most of idlelib is private and subject to change.
Terry Jan Reedyda100172015-09-28 23:38:46 -0400146 Use idleib.idle.* to start Idle. See idlelib.__init__.__doc__.
Terry Jan Reedy4dd78872015-09-21 19:28:18 -0400147
Terry Jan Reedy1d2ce972015-09-21 01:07:54 -0400148- Issue #25199: Idle: add synchronization comments for future maintainers.
149
Terry Jan Reedy13b21f82015-09-21 22:36:36 -0400150- Issue #16893: Replace help.txt with help.html for Idle doc display.
151 The new idlelib/help.html is rstripped Doc/build/html/library/idle.html.
Terry Jan Reedy1d2ce972015-09-21 01:07:54 -0400152 It looks better than help.txt and will better document Idle as released.
Terry Jan Reedy4dd78872015-09-21 19:28:18 -0400153 The tkinter html viewer that works for this file was written by Mark Roseman.
Terry Jan Reedy1d2ce972015-09-21 01:07:54 -0400154 The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
155
156- Issue #24199: Deprecate unused idlelib.idlever with possible removal in 3.6.
157
Terry Jan Reedy1d2ce972015-09-21 01:07:54 -0400158- Issue #24790: Remove extraneous code (which also create 2 & 3 conflicts).
Terry Jan Reedyea428762015-08-16 23:22:32 -0400159
160- Issue #23672: Allow Idle to edit and run files with astral chars in name.
161 Patch by Mohd Sanad Zaki Rizvi.
162
163- Issue 24745: Idle editor default font. Switch from Courier to
164 platform-sensitive TkFixedFont. This should not affect current customized
165 font selections. If there is a problem, edit $HOME/.idlerc/config-main.cfg
166 and remove 'fontxxx' entries from [Editor Window]. Patch by Mark Roseman.
167
168- Issue #21192: Idle editor. When a file is run, put its name in the restart bar.
169 Do not print false prompts. Original patch by Adnan Umer.
170
171- Issue #13884: Idle menus. Remove tearoff lines. Patch by Roger Serwy.
172
173- Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for
174 decoding unicode literals.
175
176
Terry Jan Reedy3dc40822015-05-23 17:23:23 -0400177What's New in IDLE 2.7.10?
178=========================
Terry Jan Reedyea428762015-08-16 23:22:32 -0400179*Release date: 2015-05-23*
Terry Jan Reedy3dc40822015-05-23 17:23:23 -0400180
181- Issue #23583: Fixed writing unicode to standard output stream in IDLE.
182
183- Issue #20577: Configuration of the max line length for the FormatParagraph
184 extension has been moved from the General tab of the Idle preferences dialog
185 to the FormatParagraph tab of the Config Extensions dialog.
186 Patch by Tal Einat.
187
188- Issue #16893: Update Idle doc chapter to match current Idle and add new
189 information.
190
191- Issue #23180: Rename IDLE "Windows" menu item to "Window".
192 Patch by Al Sweigart.
193
194
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400195What's New in IDLE 2.7.9?
196=========================
Terry Jan Reedyea428762015-08-16 23:22:32 -0400197*Release date: 2014-12-10*
Terry Jan Reedyf0ee6722014-12-05 20:49:23 -0500198
199- Issue #16893: Update Idle doc chapter to match current Idle and add new
200 information.
201
202- Issue #3068: Add Idle extension configuration dialog to Options menu.
203 Changes are written to HOME/.idlerc/config-extensions.cfg.
204 Original patch by Tal Einat.
205
Martin Panterbf2dca92016-07-11 07:51:37 +0000206- Issue #16233: A module browser (File : Class Browser, Alt+C) requires an
Terry Jan Reedyf0ee6722014-12-05 20:49:23 -0500207 editor window with a filename. When Class Browser is requested otherwise,
208 from a shell, output window, or 'Untitled' editor, Idle no longer displays
209 an error box. It now pops up an Open Module box (Alt+M). If a valid name
210 is entered and a module is opened, a corresponding browser is also opened.
211
212- Issue #4832: Save As to type Python files automatically adds .py to the
213 name you enter (even if your system does not display it). Some systems
214 automatically add .txt when type is Text files.
215
216- Issue #21986: Code objects are not normally pickled by the pickle module.
217 To match this, they are no longer pickled when running under Idle.
218
219- Issue #22221: IDLE now ignores the source encoding declaration on the second
220 line if the first line contains anything except a comment.
221
222- Issue #17390: Adjust Editor window title; remove 'Python',
223 move version to end.
224
225- Issue #14105: Idle debugger breakpoints no longer disappear
Martin Panter2dafcc22016-02-10 01:17:51 +0000226 when inserting or deleting lines.
Terry Jan Reedyf0ee6722014-12-05 20:49:23 -0500227
228
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400229What's New in IDLE 2.7.8?
230=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400231*Release date: 2014-06-29*
232
233- Issue #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav
234 Heblikar.
235
236- Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
237
238- Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
239
240- Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
241 Heblikar.
242
243- Issue #12387: Add missing upper(lower)case versions of default Windows key
244 bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
245
246- Issue #21695: Closing a Find-in-files output window while the search is
247 still in progress no longer closes Idle.
248
249- Issue #18910: Add unittest for textView. Patch by Phil Webster.
250
251- Issue #18292: Add unittest for AutoExpand. Patch by Saihadhav Heblikar.
252
253- Issue #18409: Add unittest for AutoComplete. Patch by Phil Webster.
254
255
256What's New in IDLE 2.7.7?
257=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400258*Release date: 2014-05-31*
259
260- Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin
261 consolidating and improving human-validated tests of Idle. Change other files
262 as needed to work with htest. Running the module as __main__ runs all tests.
263
264- Issue #21139: Change default paragraph width to 72, the PEP 8 recommendation.
265
266- Issue #21284: Paragraph reformat test passes after user changes reformat width.
267
268- Issue #20406: Use Python application icons for Idle window title bars.
269 Patch mostly by Serhiy Storchaka.
270
271- Issue #21029: Occurrences of "print" are now consistently colored as
272 being a keyword (the colorizer doesn't know if print functions are
273 enabled in the source).
274
275- Issue #17721: Remove non-functional configuration dialog help button until we
276 make it actually gives some help when clicked. Patch by Guilherme Simões.
277
278- Issue #17390: Add Python version to Idle editor window title bar.
279 Original patches by Edmond Burnett and Kent Johnson.
280
281- Issue #20058: sys.stdin.readline() in IDLE now always returns only one line.
282
283- Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE
284 no more hangs.
285
286- Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial
287 shell window is present.
288
289- Issue #17654: Ensure IDLE menus are customized properly on OS X for
290 non-framework builds and for all variants of Tk.
291
292
293What's New in IDLE 2.7.6?
294=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400295*Release date: 2013-11-10*
296
297- Issue #19426: Fixed the opening of Python source file with specified encoding.
298
299- Issue #18873: IDLE now detects Python source code encoding only in comment
300 lines.
301
302- Issue #18988: The "Tab" key now works when a word is already autocompleted.
303
304- Issue #18489: Add tests for SearchEngine. Original patch by Phil Webster.
305
306- Issue #18429: Format / Format Paragraph, now works when comment blocks
307 are selected. As with text blocks, this works best when the selection
308 only includes complete lines.
309
310- Issue #18226: Add docstrings and unittests for FormatParagraph.py.
311 Original patches by Todd Rovito and Phil Webster.
312
313- Issue #18279: Format - Strip trailing whitespace no longer marks a file as
314 changed when it has not been changed. This fix followed the addition of a
315 test file originally written by Phil Webster (the issue's main goal).
316
317- Issue #18539: Calltips now work for float default arguments.
318
319- Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
320 Patch by Tal Einat, Roget Serwy, and Todd Rovito.
321
322- Issue #8515: Set __file__ when run file in IDLE.
323 Initial patch by Bruce Frederiksen.
324
325- Issue #5492: Avoid traceback when exiting IDLE caused by a race condition.
326
327- Issue #17511: Keep IDLE find dialog open after clicking "Find Next".
328 Original patch by Sarah K.
329
330- Issue #15392: Create a unittest framework for IDLE.
331 Preliminary patch by Rajagopalasarma Jayakrishnan
332 See Lib/idlelib/idle_test/README.txt for how to run Idle tests.
333
334- Issue #14146: Highlight source line while debugging on Windows.
335
336- Issue #17532: Always include Options menu for IDLE on OS X.
337 Patch by Guilherme Simões.
338
339
Terry Jan Reedyd676a3a2013-03-30 18:50:43 -0400340What's New in IDLE 2.7.5?
341=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400342*Release date: 2013-05-12*
343
344- Issue #17838: Allow sys.stdin to be reassigned.
345
346- Issue #14735: Update IDLE docs to omit "Control-z on Windows".
347
348- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit().
349
350- Issue #17657: Show full Tk version in IDLE's about dialog.
351 Patch by Todd Rovito.
352
353- Issue #17613: Prevent traceback when removing syntax colorizer in IDLE.
354
355- Issue #1207589: Backwards-compatibility patch for right-click menu in IDLE.
356
357- Issue #16887: IDLE now accepts Cancel in tabify/untabify dialog box.
358
359- Issue #14254: IDLE now handles readline correctly across shell restarts.
360
361- Issue #17614: IDLE no longer raises exception when quickly closing a file.
362
363- Issue #6698: IDLE now opens just an editor window when configured to do so.
364
365- Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer
366 raises an exception.
367
368- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
369
Terry Jan Reedyd676a3a2013-03-30 18:50:43 -0400370- Issue #17390: Display Python version on Idle title bar.
371 Initial patch by Edmond Burnett.
372
373
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400374What's New in IDLE 2.7.4?
375=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400376*Release date: 2013-04-06*
377
378- Issue #17625: In IDLE, close the replace dialog after it is used.
379
380- IDLE was displaying spurious SystemExit tracebacks when running scripts
381 that terminated by raising SystemExit (i.e. unittest and turtledemo).
382
383- Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase
384 interface and support all mandatory methods and properties.
385
386- Issue #16829: IDLE printing no longer fails if there are spaces or other
387 special characters in the file path.
388
389- Issue #16819: IDLE method completion now correctly works for unicode literals.
390
391- Issue #16504: IDLE now catches SyntaxErrors raised by tokenizer. Patch by
392 Roger Serwy.
393
394- Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
395 Patch by Todd Rovito.
396
397- Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog
398 ended with '\'. Patch by Roger Serwy.
399
400- Issue #9803: Don't close IDLE on saving if breakpoint is open.
401 Patch by Roger Serwy.
402
403- Issue #14958: Change IDLE systax highlighting to recognize all string and byte
404 literals currently supported in Python 2.7.
405
406- Issue #14962: Update text coloring in IDLE shell window after changing
407 options. Patch by Roger Serwy.
408
409- Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
410
411- Issue #12510: Attempting to get invalid tooltip no longer closes IDLE.
412 Original patch by Roger Serwy.
413
414- Issue #10365: File open dialog now works instead of crashing
415 even when parent window is closed. Patch by Roger Serwy.
416
417- Issue #14876: Use user-selected font for highlight configuration.
418 Patch by Roger Serwy.
419
420- Issue #14409: IDLE now properly executes commands in the Shell window
421 when it cannot read the normal config files on startup and
422 has to use the built-in default key bindings.
423 There was previously a bug in one of the defaults.
424
425- Issue #3573: IDLE hangs when passing invalid command line args
426 (directory(ies) instead of file(s)) (Patch by Guilherme Polo)
427
428- Issue #5219: Prevent event handler cascade in IDLE.
429
Martin v. Löwise2b56242012-07-25 10:56:22 +0200430- Issue #15318: Prevent writing to sys.stdin.
431
Martin v. Löwisdbde8862012-07-11 08:32:05 +0200432- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
Martin v. Löwise8e4e142012-07-09 21:01:49 +0200433
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400434- Issue #10365: File open dialog now works instead of crashing even when
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400435 parent window is closed while dialog is open.
436
Ned Deily38df5142012-07-30 03:28:22 -0700437- Issue #14018: Update checks for unstable system Tcl/Tk versions on OS X
438 to include versions shipped with OS X 10.7 and 10.8 in addition to 10.6.
439
Ned Deilye3d47122012-10-22 15:13:01 -0700440- Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
441 with certain versions of Tk 8.5. Initial patch by Kevin Walzer.
442
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400443
Andrew Svetlov7c010ee2012-03-21 13:35:08 +0200444What's New in IDLE 2.7.3?
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400445=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400446*Release date: 2012-04-09*
447
448- Issue #964437 Make IDLE help window non-modal.
449 Patch by Guilherme Polo and Roger Serwy.
450
451- Issue #13933: IDLE auto-complete did not work with some imported
452 module, like hashlib. (Patch by Roger Serwy)
453
454- Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell.
455 Original patches by Marco Scataglini and Roger Serwy.
456
457- Issue #4625: If IDLE cannot write to its recent file or breakpoint
458 files, display a message popup and continue rather than crash.
459 (original patch by Roger Serwy)
460
461- Issue #8793: Prevent IDLE crash when given strings with invalid hex escape
462 sequences.
463
464- Issue #13296: Fix IDLE to clear compile __future__ flags on shell restart.
465 (Patch by Roger Serwy)
466
Andrew Svetlov8af87292012-03-31 14:34:16 +0300467- Issue #14409: IDLE now properly executes commands in the Shell window
468 when it cannot read the normal config files on startup and
469 has to use the built-in default key bindings.
470 There was previously a bug in one of the defaults.
Andrew Svetlovc37db102012-03-29 19:54:58 +0300471
Andrew Svetlov7c010ee2012-03-21 13:35:08 +0200472- Issue #3573: IDLE hangs when passing invalid command line args
473 (directory(ies) instead of file(s)).
474
475
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400476What's New in IDLE 2.7.2?
Terry Jan Reedy5525eb72012-06-07 19:50:30 -0400477=========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400478*Release date: 2011-06-11*
479
480- Issue #11718: IDLE's open module dialog couldn't find the __init__.py
481 file in a package.
482
483- Issue #12590: IDLE editor window now always displays the first line
484 when opening a long file. With Tk 8.5, the first line was hidden.
485
486- Issue #11088: don't crash when using F5 to run a script in IDLE on MacOSX
487 with Tk 8.5.
488
489- Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the
490 menu accelerators for Open Module, Go to Line, and New Indent Width.
491 The accelerators still work but no longer appear in the menu items.
492
493- Issue #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather
494 than the currently problematic Apple-supplied one, when running with the
495 64-/32-bit installer variant.
496
497- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save
498 commands.
499
500- Issue #6075: IDLE on Mac OS X now works with both Carbon AquaTk and
501 Cocoa AquaTk.
502
503- Issue #10404: Use ctl-button-1 on OSX for the context menu in Idle.
504
505- Issue #10107: Warn about unsaved files in IDLE on OSX.
506
507- Issue #10406: Enable Rstrip IDLE extension on OSX (just like on other
508 platforms).
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400509
Kurt B. Kaisera5392452011-05-25 22:36:51 -0400510- Issue #6378: Further adjust idle.bat to start associated Python
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400511
512- Issue #11896: Save on Close failed despite selecting "Yes" in dialog.
513
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400514- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and
515 strange selection behavior. Improve selection extension behaviour.
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400516
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400517- Issue #3851 <Home> toggle non-functional when NumLock set on Windows.
518
519
520What's New in Python 2.7.1?
521===========================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400522*Release date: 2010-11-27*
523
524- Issue #6378: idle.bat now runs with the appropriate Python version rather than
525 the system default. Patch by Sridhar Ratnakumar.
Kurt B. Kaiser7548bce2011-03-25 17:48:27 -0400526
Kurt B. Kaiser020d3d92011-03-17 00:05:38 -0400527
Benjamin Peterson743242a2010-07-03 13:49:03 +0000528What's New in IDLE 2.7?
529=======================
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400530*Release date: 2010-07-03*
531
532- Issue #5150: IDLE's format menu now has an option to strip trailing
533 whitespace.
534
535- Issue #5847: Remove -n switch on "Edit with IDLE" menu item.
Amaury Forgeot d'Arcdd8d8242008-04-21 22:35:30 +0000536
Kurt B. Kaiser106ac462009-05-03 01:03:44 +0000537- idle.py modified and simplified to better support developing experimental
538 versions of IDLE which are not installed in the standard location.
539
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400540- Issue #5559: OutputWindow/PyShell right click menu "Go to file/line"
541 wasn't working with file paths containing spaces.
Kurt B. Kaiser94290d32009-04-26 23:22:11 +0000542
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400543- Issue #5783: Windows: Version string for the .chm help file changed,
544 file not being accessed Patch by Guilherme Polo/
Kurt B. Kaiserf13447f2009-04-23 02:36:01 +0000545
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400546- Issue #1529142: Allow multiple IDLE GUI/subprocess pairs to exist
547 simultaneously. Thanks to David Scherer for suggesting the use of an
548 ephemeral port for the GUI. Patch by Weeble.
Kurt B. Kaiser013d6cc2009-04-04 07:03:48 +0000549
Kurt B. Kaiser4724f402009-04-02 02:44:54 +0000550- Remove port spec from run.py and fix bug where subprocess fails to
551 extract port from command line when warnings are present.
552
Terry Jan Reedy6e9a3ac2014-07-14 02:07:26 -0400553- Issue #5129: Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr
554 to handle mixed space/tab properly. Patch by Guilherme Polo.
Kurt B. Kaiserd82a8872011-05-12 21:18:47 -0400555
Ronald Oussoren8c954842009-01-02 12:59:32 +0000556- Issue #3549: On MacOS the preferences menu was not present
557
Martin v. Löwis7d7e1b72009-01-24 15:45:18 +0000558
559What's New in IDLE 2.6?
560=======================
Martin v. Löwis7d7e1b72009-01-24 15:45:18 +0000561*Release date: 01-Oct-2008*
562
Amaury Forgeot d'Arcdd8d8242008-04-21 22:35:30 +0000563- Issue #2665: On Windows, an IDLE installation upgraded from an old version
564 would not start if a custom theme was defined.
565
Kurt B. Kaiser93cdae52008-04-27 21:07:41 +0000566- Home / Control-A toggles between left margin and end of leading white
567 space. Patch 1196903 Jeff Shute.
568
Kurt B. Kaiser83101902008-04-27 21:52:19 +0000569- Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.
570
571- Autocompletion of filenames now support alternate separators, e.g. the
572 '/' char on Windows. Patch 2061 Tal Einat.
Kurt B. Kaiser9c5c0af2008-04-27 21:38:05 +0000573
Kurt B. Kaiserf05fa332008-02-15 22:25:09 +0000574- Configured selection highlighting colors were ignored; updating highlighting
575 in the config dialog would cause non-Python files to be colored as if they
576 were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
577
Kurt B. Kaisere312cfd2008-02-15 21:56:36 +0000578- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.
579
Kurt B. Kaiserf30ba3d2008-01-23 22:55:26 +0000580- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
581
Kurt B. Kaiserb4aaa762008-01-23 22:19:23 +0000582- Could not open files in .idlerc directory if latter was hidden on Windows.
583 Issue 1743, Issue 1862.
Anthony Baxter78b1a082006-08-18 07:29:02 +0000584
Kurt B. Kaiser28c7bcf2007-12-28 04:18:01 +0000585- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
586
Kurt B. Kaiser20172f92007-10-30 02:38:54 +0000587- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
588 of tabs. Patch 1612746 Tal Einat.
589
Kurt B. Kaiser60d58402007-10-28 19:03:59 +0000590- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
591
Kurt B. Kaiser631fee62007-10-10 01:06:47 +0000592- Show paste position if > 80 col. Patch 1659326 Tal Einat.
593
Kurt B. Kaisercca976b2007-10-10 00:55:40 +0000594- Update cursor color without restarting. Patch 1725576 Tal Einat.
595
Kurt B. Kaiserc8f65e62007-10-09 19:31:30 +0000596- Allow keyboard interrupt only when user code is executing in subprocess.
597 Patch 1225 Tal Einat (reworked from IDLE-Spoon).
598
Kurt B. Kaisere3fde8f2007-10-04 03:11:12 +0000599- configDialog cleanup. Patch 1730217 Tal Einat.
600
Kurt B. Kaiserd5f49102007-10-04 02:53:07 +0000601- textView cleanup. Patch 1718043 Tal Einat.
602
Kurt B. Kaiser0b634ef2007-10-04 02:09:17 +0000603- Clean up EditorWindow close.
604
Kurt B. Kaiserac45aff2008-02-14 00:08:55 +0000605- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
606
607- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
608
609- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
610 option in config-extensions w/o a value. Patch #1672481, Tal Einat
611
Kurt B. Kaiser209de1f2007-02-08 22:58:18 +0000612- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
613 mouse and cursor selection in ACWindow implemented; double Tab inserts
614 current selection and closes ACW (similar to double-click and Return); scroll
615 wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
616
Kurt B. Kaiserca30acf2007-02-07 03:39:41 +0000617- AutoCompleteWindow moved below input line, will move above if there
618 isn't enough space. Patch 1621265 Tal Einat
619
Kurt B. Kaiserecf796e2007-02-05 23:02:16 +0000620- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
621 Suggested solution by Christos Georgiou, Bug 791968.
622
Kurt B. Kaiser90f84922007-02-05 06:03:18 +0000623- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
624
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000625- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
626
Martin v. Löwis8609da92006-12-03 09:54:46 +0000627- Patch #1362975: Rework CodeContext indentation algorithm to
628 avoid hard-coding pixel widths.
629
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000630- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
631 is started with that option.
632
Kurt B. Kaiser0b634ef2007-10-04 02:09:17 +0000633- Honor the "Cancel" action in the save dialog (Debian bug #299092)
634
Kurt B. Kaiserc426ffc2006-10-01 21:16:45 +0000635- Some syntax errors were being caught by tokenize during the tabnanny
636 check, resulting in obscure error messages. Do the syntax check
637 first. Bug 1562716, 1562719
638
Anthony Baxter78b1a082006-08-18 07:29:02 +0000639- IDLE's version number takes a big jump to match the version number of
640 the Python release of which it's a part.
641
642
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000643What's New in IDLE 1.2?
644=======================
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000645*Release date: 19-SEP-2006*
646
Kurt B. Kaiser7ae35482006-08-16 21:45:59 +0000647- File menu hotkeys: there were three 'p' assignments. Reassign the
648 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
649 Shell hotkey from 's' to 'l'.
650
Kurt B. Kaiserd112bc72006-08-16 05:01:42 +0000651- IDLE honors new quit() and exit() commands from site.py Quitter() object.
652 Patch 1540892, Jim Jewett
653
654- The 'with' statement is now a Code Context block opener.
655 Patch 1540851, Jim Jewett
Kurt B. Kaiser2a7ff292006-08-16 03:15:26 +0000656
Kurt B. Kaisercd3d8be2006-08-10 17:11:09 +0000657- Retrieval of previous shell command was not always preserving indentation
658 (since 1.2a1) Patch 1528468 Tal Einat.
659
Kurt B. Kaiser1fe9ca02006-08-10 01:41:17 +0000660- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
661
Kurt B. Kaiser53f2b5f2006-08-09 20:34:46 +0000662- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
663
Andrew M. Kuchlingfaeeab72006-08-09 18:23:14 +0000664- When used w/o subprocess, all exceptions were preceded by an error
Kurt B. Kaiser312e5af2006-08-09 16:46:15 +0000665 message claiming they were IDLE internal errors (since 1.2a1).
666
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000667- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
668
669- Bug #1517990: IDLE keybindings on MacOS X now work correctly
670
671- Bug #1517996: IDLE now longer shows the default Tk menu when a
672 path browser, class browser or debugger is the frontmost window on MacOS X
673
Kurt B. Kaisera2946a42006-07-24 18:05:51 +0000674- EditorWindow.test() was failing. Bug 1417598
675
Kurt B. Kaiserb3c4d162006-07-24 17:13:23 +0000676- EditorWindow failed when used stand-alone if sys.ps1 not set.
677 Bug 1010370 Dave Florek
678
Kurt B. Kaiserc6bacd52006-07-23 04:19:49 +0000679- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
680
Kurt B. Kaiser43476e02006-07-20 22:22:52 +0000681- Avoid occasional failure to detect closing paren properly.
682 Patch 1407280 Tal Einat
683
Kurt B. Kaiser4b7e35b2006-07-18 04:03:16 +0000684- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
685
686- Colorizer now handles #<builtin> correctly, also unicode strings and
687 'as' keyword in comment directly following import command. Closes 1325071.
688 Patch 1479219 Tal Einat
689
Kurt B. Kaiserc3200b92006-12-15 05:13:11 +0000690- Patch #1162825: Support non-ASCII characters in IDLE window titles.
691
Kurt B. Kaiser70f05c52006-03-19 20:40:05 +0000692- Source file f.flush() after writing; trying to avoid lossage if user
693 kills GUI.
694
Kurt B. Kaiser5c6e0a12005-11-22 21:09:37 +0000695- Options / Keys / Advanced dialog made functional. Also, allow binding
696 of 'movement' keys.
697
698- 'syntax' patch adds improved calltips and a new class attribute listbox.
699 MultiCall module allows binding multiple actions to an event.
700 Patch 906702 Noam Raphael
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000701
Kurt B. Kaiserb61602c2005-11-15 07:20:06 +0000702- Better indentation after first line of string continuation.
703 IDLEfork Patch 681992, Noam Raphael
704
Kurt B. Kaiser389482c2005-10-03 20:08:25 +0000705- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
706
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000707- Increased performance in CodeContext extension Patch 936169 Noam Raphael
708
Kurt B. Kaiser2618c7f2005-08-23 02:27:23 +0000709- Mac line endings were incorrect when pasting code from some browsers
710 when using X11 and the Fink distribution. Python Bug 1263656.
711
Kurt B. Kaisera7daba62005-06-19 18:56:15 +0000712- <Enter> when cursor is on a previous command retrieves that command. Instead
713 of replacing the input line, the previous command is now appended to the
714 input line. Indentation is preserved, and undo is enabled.
715 Patch 1196917 Jeff Shute
716
Kurt B. Kaiserca7329c2005-06-12 05:19:23 +0000717- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
718 the Untabify command.
719
720- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
721 Patch 1196980 Jeff Shute
722
Kurt B. Kaiserdf506ea2005-06-12 04:33:30 +0000723- New files are colorized by default, and colorizing is removed when
724 saving as non-Python files. Patch 1196895 Jeff Shute
725 Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
726
Kurt B. Kaiser935ea9a2005-05-10 03:44:24 +0000727- Improve subprocess link error notification.
728
Kurt B. Kaiser20345fb2005-05-05 23:29:54 +0000729- run.py: use Queue's blocking feature instead of sleeping in the main
730 loop. Patch # 1190163 Michiel de Hoon
731
Kurt B. Kaiser0676dfd2005-02-03 01:37:14 +0000732- Add config-main option to make the 'history' feature non-cyclic.
733 Default remains cyclic. Python Patch 914546 Noam Raphael.
734
Kurt B. Kaiseracdef852005-01-31 03:34:26 +0000735- Removed ability to configure tabs indent from Options dialog. This 'feature'
736 has never worked and no one has complained. It is still possible to set a
737 default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
738 tabs for the current EditorWindow via the Format menu) but IDLE will
739 encourage indentation via spaces.
740
741- Enable setting the indentation width using the Options dialog.
742 Bug # 783877
743
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000744- Add keybindings for del-word-left and del-word-right.
745
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000746- Discourage using an indent width other than 8 when using tabs to indent
747 Python code.
748
749- Restore use of EditorWindow.set_indentation_params(), was dead code since
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000750 Autoindent was merged into EditorWindow. This allows IDLE to conform to the
751 indentation width of a loaded file. (But it still will not switch to tabs
752 even if the file uses tabs.) Any change in indent width is local to that
753 window.
Kurt B. Kaiser6af44982005-01-19 00:22:59 +0000754
755- Add Tabnanny check before Run/F5, not just when Checking module.
756
Kurt B. Kaiserb00e89f2005-01-18 00:54:58 +0000757- If an extension can't be loaded, print warning and skip it instead of
758 erroring out.
759
Kurt B. Kaiser3069dbb2005-01-28 00:16:16 +0000760- Improve error handling when .idlerc can't be created (warn and exit).
761
Kurt B. Kaiser70f05c52006-03-19 20:40:05 +0000762- The GUI was hanging if the shell window was closed while a raw_input()
Kurt B. Kaiser5c3df352004-12-23 04:20:59 +0000763 was pending. Restored the quit() of the readline() mainloop().
764 http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
765
Kurt B. Kaiserdcba6622004-12-21 22:10:32 +0000766- The remote procedure call module rpc.py can now access data attributes of
767 remote registered objects. Changes to these attributes are local, however.
768
Terry Jan Reedyda100172015-09-28 23:38:46 -0400769
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000770What's New in IDLE 1.1?
771=======================
Anthony Baxtere2648ee2004-11-30 01:28:55 +0000772*Release date: 30-NOV-2004*
Kurt B. Kaisere9535112004-11-19 15:46:49 +0000773
774- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
775 stuck subprocess MainThread because only the SocketThread was exiting.
776
Kurt B. Kaiser03562a52004-11-16 21:31:08 +0000777- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
778 button) caused IDLE to fail on restart (no new keyset was created in
779 config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
780
Kurt B. Kaiserf7a88992004-11-13 21:05:58 +0000781- A change to the linecache.py API caused IDLE to exit when an exception was
782 raised while running without the subprocess (-n switch). Python Bug 1063840.
783
Tim Peters16e3cf52004-10-24 23:45:42 +0000784- When paragraph reformat width was made configurable, a bug was
785 introduced that caused reformatting of comment blocks to ignore how
786 far the block was indented, effectively adding the indentation width
787 to the reformat width. This has been repaired, and the reformat
788 width is again a bound on the total width of reformatted lines.
789
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000790- Improve keyboard focus binding, especially in Windows menu. Improve
791 window raising, especially in the Windows menu and in the debugger.
792 IDLEfork 763524.
793
Mark Dickinson3e4caeb2009-02-21 20:27:01 +0000794- If user passes a non-existent filename on the commandline, just
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000795 open a new file, don't raise a dialog. IDLEfork 854928.
796
Kurt B. Kaiser183403a2004-08-22 05:14:32 +0000797- EditorWindow.py was not finding the .chm help file on Windows. Typo
798 at Rev 1.54. Python Bug 990954
799
Kurt B. Kaiser8aa23922004-07-15 04:54:57 +0000800- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
801 (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
802
Kurt B. Kaiser49a5fe12004-07-04 01:25:56 +0000803- Redirect the warning stream to the shell during the ScriptBinding check of
804 user code and format the warning similarly to an exception for both that
805 check and for runtime warnings raised in the subprocess.
806
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000807- CodeContext hint pane visibility state is now persistent across sessions.
808 The pane no longer appears in the shell window. Added capability to limit
809 extensions to shell window or editor windows. Noam Raphael addition
810 to Patch 936169.
811
812- Paragraph reformat width is now a configurable parameter in the
813 Options GUI.
814
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +0000815- New Extension: CodeContext. Provides block structuring hints for code
816 which has scrolled above an edit window. Patch 936169 Noam Raphael.
817
Kurt B. Kaisercf6f1b62004-04-11 03:16:07 +0000818- If nulls somehow got into the strings in recent-files.lst
819 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
820
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000821- If the normal background is changed via Configure/Highlighting, it will
822 update immediately, thanks to the previously mentioned patch by Nigel Rowe.
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +0000823
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000824- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
Kurt B. Kaiser74910222005-10-02 23:36:46 +0000825 This also fixed IDLEfork bug [ 693418 ] Normal text background color not
826 refreshed and Python bug [897872 ] Unknown color name on HP-UX
Kurt B. Kaiser73360a32004-03-08 18:15:31 +0000827
Kurt B. Kaiserd6ab77d2004-01-21 19:21:11 +0000828- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
829 to the execution server. The return of the OK response from the subprocess
830 initialization was interfering and causing the sending socket to be not
831 ready. Add an IO ready test to fix this. Moved the polling IO ready test
832 into pollpacket().
833
834- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
835
Kurt B. Kaiseraf3eb872004-01-21 18:54:30 +0000836- Added a Tk error dialog to run.py inform the user if the subprocess can't
837 connect to the user GUI process. Added a timeout to the GUI's listening
838 socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
839 the port or connect to the subprocess. Clean up error handling during
840 connection initiation phase. This is an update of Python Patch 778323.
841
Tim Peters16e3cf52004-10-24 23:45:42 +0000842- Print correct exception even if source file changed since shell was
Kurt B. Kaisere9802a32004-01-02 04:04:04 +0000843 restarted. IDLEfork Patch 869012 Noam Raphael
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000844
Kurt B. Kaiser2303b1c2003-11-24 05:26:16 +0000845- Keybindings with the Shift modifier now work correctly. So do bindings which
846 use the Space key. Limit unmodified user keybindings to the function keys.
847 Python Bug 775353, IDLEfork Bugs 755647, 761557
848
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000849- After an exception, run.py was not setting the exception vector. Noam
Tim Peters16e3cf52004-10-24 23:45:42 +0000850 Raphael suggested correcting this so pdb's postmortem pm() would work.
Kurt B. Kaiser924f6162003-11-19 04:52:32 +0000851 IDLEfork Patch 844675
852
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000853- IDLE now does not fail to save the file anymore if the Tk buffer is not a
854 Unicode string, yet eol_convention is. Python Bugs 774680, 788378
855
Kurt B. Kaiserb7855182003-08-14 14:54:28 +0000856- IDLE didn't start correctly when Python was installed in "Program Files" on
857 W2K and XP. Python Bugs 780451, 784183
858
859- config-main.def documentation incorrectly referred to idle- instead of
860 config- filenames. SF 782759 Also added note about .idlerc location.
861
862
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000863What's New in IDLE 1.0?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000864=======================
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +0000865*Release date: 29-Jul-2003*
866
Kurt B. Kaiser6145a622003-07-23 15:42:14 +0000867- Calltip error when docstring was None Python Bug 775541
868
Kurt B. Kaisercca91222003-07-16 03:10:43 +0000869- Updated extend.txt, help.txt, and config-extensions.def to correctly
870 reflect the current status of the configuration system. Python Bug 768469
871
872- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
873
874- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
875 Python Patch 768187
876
877- Break or continue statements outside a loop were causing IDLE crash
878 Python Bug 767794
879
880- Convert Unicode strings from readline to IOBinding.encoding. Also set
881 sys.std{in|out|err}.encoding, for both the local and the subprocess case.
882 SF IDLEfork patch 682347.
883
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000884- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
885 file Latin-1.
886
887- Updated the About dialog to reflect re-integration into Python. Provide
888 buttons to display Python's NEWS, License, and Credits, plus additional
889 buttons for IDLE's README and NEWS.
890
891- TextViewer() now has a third parameter which allows inserting text into the
892 viewer instead of reading from a file.
893
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000894- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
895 IDLEfork modified to install in the Python environment. The code in the
896 interrupt module has been moved to thread.interrupt_main(). )
897
898- Printing the Shell window was failing if it was not saved first SF 748975
899
900- When using the Search in Files dialog, if the user had a selection
901 highlighted in his Editor window, insert it into the dialog search field.
902
903- The Python Shell entry was disappearing from the Windows menu.
904
905- Update the Windows file list when a file name change occurs
906
907- Change to File / Open Module: always pop up the dialog, using the current
908 selection as the default value. This is easier to use habitually.
909
910- Avoided a problem with starting the subprocess when 'localhost' doesn't
911 resolve to the user's loopback interface. SF 747772
912
913- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
914 improved notification of Tabnanny Token Error.
915
916- File / New will by default save in the directory of the Edit window from
917 which it was initiated. SF 748973 Guido van Rossum patch.
918
Steven M. Gavad39993e2001-07-20 01:36:49 +0000919
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +0000920What's New in IDLEfork 0.9b1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000921=============================
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000922*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000923
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000924- The current working directory of the execution environment (and shell
Tim Peters16e3cf52004-10-24 23:45:42 +0000925 following completion of execution) is now that of the module being run.
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000926
927- Added the delete-exitfunc option to config-main.def. (This option is not
928 included in the Options dialog.) Setting this to True (the default) will
929 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
930
931- IDLE now preserves the line ending codes when editing a file produced on
932 a different platform. SF 661759, SF 538584
933
934- Reduced default editor font size to 10 point and increased window height
935 to provide a better initial impression on Windows.
936
937- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
938 the default font when first installed on Windows. SF 661676
939
940- Added Autosave feature: when user runs code from edit window, if the file
941 has been modified IDLE will silently save it if Autosave is enabled. The
942 option is set in the Options dialog, and the default is to prompt the
943 user to save the file. SF 661318 Bruce Sherwood patch.
944
945- Improved the RESTART annotation in the shell window when the user restarts
946 the shell while it is generating output. Also improved annotation when user
947 repeatedly hammers the Ctrl-F6 restart.
948
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000949- Allow IDLE to run when not installed and cwd is not the IDLE directory
950 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
951
952- When a module is run from an EditorWindow: if its directory is not in
953 sys.path, prepend it. This allows the module to import other modules in
954 the same directory. Do the same for a script run from the command line.
955
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000956- Correctly restart the subprocess if it is running user code and the user
957 attempts to run some other module or restarts the shell. Do the same if
958 the link is broken and it is possible to restart the subprocess and re-
959 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000960
961- Improved exception reporting when running commands or scripts from the
962 command line.
963
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000964- Added a -n command line switch to start IDLE without the subprocess.
965 Removed the Shell menu when running in that mode. Updated help messages.
966
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000967- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000968 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000969
970- Restore the ability to run without the subprocess. This can be important for
971 some platforms or configurations. (Running without the subprocess allows the
972 debugger to trace through parts of IDLE itself, which may or may not be
973 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000974 reload/import tricks must be use if user source code is changed.) This is
975 helpful for developing IDLE using IDLE, because one instance can be used to
976 edit the code and a separate instance run to test changes. (Multiple
977 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000978
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000979- Improve the error message a user gets when saving a file with non-ASCII
980 characters and no source encoding is specified. Done by adding a dialog
981 'EncodingMessage', which contains the line to add in a fixed-font entry
982 widget, and which has a button to add that line to the file automatically.
983 Also, add a configuration option 'EditorWindow/encoding', which has three
984 possible values: none, utf-8, and locale. None is the default: IDLE will show
985 this dialog when non-ASCII characters are encountered. utf-8 means that files
986 with non-ASCII characters are saved as utf-8-with-bom. locale means that
987 files are saved in the locale's encoding; the dialog is only displayed if the
988 source contains characters outside the locale's charset. SF 710733 - Loewis
989
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000990- Improved I/O response by tweaking the wait parameter in various
991 calls to signal.signal().
992
Tim Peters16e3cf52004-10-24 23:45:42 +0000993- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000994 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000995 in MainThread, while the RPCServer is handled by SockThread. This is
996 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000997
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000998- Implemented the 'interrupt' extension module, which allows a subthread
999 to raise a KeyboardInterrupt in the main thread.
1000
1001- Attempting to save the shell raised an error related to saving
1002 breakpoints, which are not implemented in the shell
1003
1004- Provide a correct message when 'exit' or 'quit' are entered at the
1005 IDLE command prompt SF 695861
1006
1007- Eliminate extra blank line in shell output caused by not flushing
1008 stdout when user code ends with an unterminated print. SF 695861
1009
1010- Moved responsibility for exception formatting (i.e. pruning IDLE internal
1011 calls) out of rpc.py into the client and server.
1012
Kurt B. Kaiser003091c2003-02-17 18:57:16 +00001013- Exit IDLE cleanly even when doing subprocess I/O
1014
Tim Peters16e3cf52004-10-24 23:45:42 +00001015- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +00001016
1017- Restart the subprocess if it terminates itself. (VPython programs do that)
1018
Tim Peters16e3cf52004-10-24 23:45:42 +00001019- Support subclassing of exceptions, including in the shell, by moving the
Kurt B. Kaiser003091c2003-02-17 18:57:16 +00001020 exception formatting to the subprocess.
1021
Kurt B. Kaiser003091c2003-02-17 18:57:16 +00001022
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001023What's New in IDLEfork 0.9 Alpha 2?
1024===================================
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001025*Release date: 27-Jan-2003*
1026
1027- Updated INSTALL.txt to claify use of the python2 rpm.
1028
1029- Improved formatting in IDLE Help.
1030
1031- Run menu: Replace "Run Script" with "Run Module".
1032
1033- Code encountering an unhandled exception under the debugger now shows
1034 the correct traceback, with IDLE internal levels pruned out.
1035
1036- If an exception occurs entirely in IDLE, don't prune the IDLE internal
1037 modules from the traceback displayed.
1038
1039- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
1040
1041- IDLE icons will now install correctly even when setup.py is run from the
1042 build directory
1043
1044- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +00001045
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +00001046- Left cursor move in presence of selected text now moves from left end
1047 of the selection.
1048
1049- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
1050 Alt/Meta on some Linux distros.
1051
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +00001052- Change default: IDLE now starts with Python Shell.
1053
1054- Removed the File Path from the Additional Help Sources scrolled list.
1055
Tim Peters16e3cf52004-10-24 23:45:42 +00001056- Add capability to access Additional Help Sources on the web if the
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +00001057 Help File Path begins with //http or www. (Otherwise local path is
1058 validated, as before.)
1059
1060- Additional Help Sources were not being posted on the Help menu in the
Tim Peters16e3cf52004-10-24 23:45:42 +00001061 order entered. Implement sorting the list by [HelpFiles] 'option'
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +00001062 number.
1063
Tim Peters16e3cf52004-10-24 23:45:42 +00001064- Add Browse button to New Help Source dialog. Arrange to start in
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +00001065 Python/Doc if platform is Windows, otherwise start in current directory.
1066
1067- Put the Additional Help Sources directly on the Help menu instead of in
1068 an Extra Help cascade menu. Rearrange the Help menu so the Additional
1069 Help Sources come last. Update help.txt appropriately.
1070
1071- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
1072
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001073- Uniform capitalization in General tab of ConfigDialog, update the doc string.
1074
1075- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
1076 deleting Additional Help Sources from the user's config file.
1077
1078- Make configHelpSourceEdit OK button the default and bind <Return>
1079
1080- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
1081 to parents.
1082
1083- Use os.startfile() to open both Additional Help and Python Help on the
1084 Windows platform. The application associated with the file type will act as
1085 the viewer. Windows help files (.chm) are now supported via the
1086 Settings/General/Additional Help facility.
1087
1088- If Python Help files are installed locally on Linux, use them instead of
1089 accessing python.org.
1090
1091- Make the methods for finding the Python help docs more robust, and make
Tim Peters16e3cf52004-10-24 23:45:42 +00001092 them work in the installed configuration, also.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001093
1094- On the Save Before Run dialog, make the OK button the default. One
1095 less mouse action!
1096
1097- Add a method: EditorWindow.get_geometry() for future use in implementing
1098 window location persistence.
1099
1100- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
1101
1102- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
1103
1104- Rearrange the Shell menu to put Stack Viewer entries adjacent.
1105
1106- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001107 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
1108 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001109
1110- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001111 shell window menu "Shell/View Restart" with binding F6 to jump to the most
1112 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001113
Kurt B. Kaiser7e172892003-01-27 02:40:20 +00001114- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001115
1116- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
1117
1118- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
1119
1120- In installer text, fix reference to Visual Python, should be VPython.
1121 Properly credit David Scherer.
1122
1123- Modified idle, idle.py, idle.pyw to improve exception handling.
1124
Steven M. Gavad39993e2001-07-20 01:36:49 +00001125
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001126What's New in IDLEfork 0.9 Alpha 1?
1127===================================
Tim Peters16e3cf52004-10-24 23:45:42 +00001128*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +00001129
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001130- First release of major new functionality. For further details refer to
1131 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001132
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001133- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001134
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001135- Overhauled the IDLE startup options and revised the idle -h help message,
1136 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +00001137
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001138- Multiple bug fixes and usability enhancements.
1139
1140- Introduced the new RPC implementation, which includes a debugger. The output
1141 of user code is to the shell, and the shell may be used to inspect the
1142 environment after the run has finished. (In version 0.8.1 the shell
1143 environment was separate from the environment of the user code.)
1144
1145- Introduced the configuration GUI and a new About dialog.
1146
1147- Removed David Scherer's Remote Procedure Call code and replaced with Guido
1148 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
1149 to inspect the environment of code Run from an Edit window. Files removed:
1150 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +00001151
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +00001152--------------------------------------------------------------------
1153Refer to HISTORY.txt for additional information on earlier releases.
1154--------------------------------------------------------------------
David Scherer7aced172000-08-15 01:13:23 +00001155
1156
David Scherer7aced172000-08-15 01:13:23 +00001157
1158
David Scherer7aced172000-08-15 01:13:23 +00001159