Terry Jan Reedy | 094338e | 2016-06-26 18:20:14 -0400 | [diff] [blame] | 1 | What's New in IDLE 2.7.13? |
| 2 | ========================== |
| 3 | *Release date: 2017-01-01?* |
| 4 | |
Terry Jan Reedy | 7a2a586 | 2016-08-20 21:40:55 -0400 | [diff] [blame] | 5 | - Issue #27714: text_textview and test_autocomplete now pass when re-run |
| 6 | in the same process. This occurs when test_idle fails when run with the |
Terry Jan Reedy | 7ff1b62 | 2016-08-21 00:18:49 -0400 | [diff] [blame] | 7 | -w option but without -jn. Fix warning from test_config. |
Terry Jan Reedy | 7a2a586 | 2016-08-20 21:40:55 -0400 | [diff] [blame] | 8 | |
| 9 | - Issue #27452: add line counter and crc to IDLE configHandler test dump. |
| 10 | |
Terry Jan Reedy | 094338e | 2016-06-26 18:20:14 -0400 | [diff] [blame] | 11 | - Issue #27365: Allow non-ascii chars in IDLE NEWS.txt, for contributor names. |
| 12 | |
| 13 | - Issue #27245: IDLE: Cleanly delete custom themes and key bindings. |
| 14 | Previously, when IDLE was started from a console or by import, a cascade |
| 15 | of warnings was emitted. Patch by Serhiy Storchaka. |
| 16 | |
| 17 | |
Terry Jan Reedy | f50417b | 2016-05-30 01:02:28 -0400 | [diff] [blame] | 18 | What's New in IDLE 2.7.12? |
| 19 | ========================== |
Terry Jan Reedy | 094338e | 2016-06-26 18:20:14 -0400 | [diff] [blame] | 20 | *Release date: 2015-06-25* |
Terry Jan Reedy | f50417b | 2016-05-30 01:02:28 -0400 | [diff] [blame] | 21 | |
Terry Jan Reedy | 391f1a4 | 2016-06-11 04:31:18 -0400 | [diff] [blame] | 22 | - Issue #5124: Paste with text selected now replaces the selection on X11. |
| 23 | This matches how paste works on Windows, Mac, most modern Linux apps, |
| 24 | and ttk widgets. Original patch by Serhiy Storchaka. |
| 25 | |
Terry Jan Reedy | 05837ec | 2016-06-07 15:33:47 -0400 | [diff] [blame] | 26 | - Issue #24759: Make clear in idlelib.idle_test.__init__ that the directory |
| 27 | is a private implementation of test.test_idle and tool for maintainers. |
| 28 | |
Terry Jan Reedy | f50417b | 2016-05-30 01:02:28 -0400 | [diff] [blame] | 29 | - Issue #26673: When tk reports font size as 0, change to size 10. |
| 30 | Such fonts on Linux prevented the configuration dialog from opening. |
| 31 | |
| 32 | - Issue #27044: Add ConfigDialog.remove_var_callbacks to stop memory leaks. |
| 33 | |
| 34 | - In the 'IDLE-console differences' section of the IDLE doc, clarify |
| 35 | how running with IDLE affects sys.modules and the standard streams. |
| 36 | |
| 37 | - Issue #25507: fix incorrect change in IOBinding that prevented printing. |
| 38 | Change also prevented saving shell window with non-ascii characters. |
| 39 | Augment IOBinding htest to include all major IOBinding functions. |
| 40 | |
| 41 | - Issue #25905: Revert unwanted conversion of ' to RIGHT SINGLE QUOTATION |
| 42 | MARK in README.txt and open this and NEWS.txt with 'ascii'. |
| 43 | Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'. |
| 44 | |
| 45 | - Issue #26417: Prevent spurious errors and incorrect defaults when |
| 46 | installing IDLE 2.7 on OS X: default configuration settings are |
| 47 | no longer installed from OS X specific copies. |
| 48 | |
| 49 | |
Terry Jan Reedy | ea42876 | 2015-08-16 23:22:32 -0400 | [diff] [blame] | 50 | What's New in IDLE 2.7.11? |
Terry Jan Reedy | e4679e4 | 2015-11-21 13:31:00 -0500 | [diff] [blame] | 51 | ========================== |
| 52 | *Release date: 2015-12-06* |
| 53 | |
| 54 | - Issue 15348: Stop the debugger engine (normally in a user process) |
| 55 | before closing the debugger window (running in the IDLE process). |
| 56 | This prevents the RuntimeErrors that were being caught and ignored. |
| 57 | |
| 58 | - Issue #24455: Prevent IDLE from hanging when a) closing the shell while the |
| 59 | debugger is active (15347); b) closing the debugger with the [X] button |
| 60 | (15348); and c) activating the debugger when already active (24455). |
| 61 | The patch by Mark Roseman does this by making two changes. |
| 62 | 1. Suspend and resume the gui.interaction method with the tcl vwait |
| 63 | mechanism intended for this purpose (instead of root.mainloop & .quit). |
| 64 | 2. In gui.run, allow any existing interaction to terminate first. |
| 65 | |
| 66 | - Change 'The program' to 'Your program' in an IDLE 'kill program?' message |
| 67 | to make it clearer that the program referred to is the currently running |
| 68 | user program, not IDLE itself. |
| 69 | |
| 70 | - Issue #24750: Improve the appearance of the IDLE editor window status bar. |
| 71 | Patch by Mark Roseman. |
| 72 | |
| 73 | - Issue #25313: Change the handling of new built-in text color themes to better |
| 74 | address the compatibility problem introduced by the addition of IDLE Dark. |
| 75 | Consistently use the revised idleConf.CurrentTheme everywhere in idlelib. |
| 76 | |
| 77 | - Issue #24782: Extension configuration is now a tab in the IDLE Preferences |
| 78 | dialog rather than a separate dialog. The former tabs are now a sorted |
| 79 | list. Patch by Mark Roseman. |
| 80 | |
| 81 | - Issue #22726: Re-activate the config dialog help button with some content |
| 82 | about the other buttons and the new IDLE Dark theme. |
Terry Jan Reedy | ea42876 | 2015-08-16 23:22:32 -0400 | [diff] [blame] | 83 | |
Terry Jan Reedy | 1b6333a | 2015-10-04 01:14:45 -0400 | [diff] [blame] | 84 | - Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme. |
| 85 | It is more or less IDLE Classic inverted, with a cobalt blue background. |
| 86 | Strings, comments, keywords, ... are still green, red, orange, ... . |
Terry Jan Reedy | e4679e4 | 2015-11-21 13:31:00 -0500 | [diff] [blame] | 87 | To use it with IDLEs released before November 2015, hit the |
| 88 | 'Save as New Custom Theme' button and enter a new name, |
| 89 | such as 'Custom Dark'. The custom theme will work with any IDLE |
| 90 | release, and can be modified. |
Terry Jan Reedy | 1b6333a | 2015-10-04 01:14:45 -0400 | [diff] [blame] | 91 | |
| 92 | - Issue #25224: README.txt is now an idlelib index for IDLE developers and |
Terry Jan Reedy | e4679e4 | 2015-11-21 13:31:00 -0500 | [diff] [blame] | 93 | curious users. The previous user content is now in the IDLE doc chapter. |
| 94 | 'IDLE' now means 'Integrated Development and Learning Environment'. |
Terry Jan Reedy | 1b6333a | 2015-10-04 01:14:45 -0400 | [diff] [blame] | 95 | |
| 96 | - Issue #24820: Users can now set breakpoint colors in |
| 97 | Settings -> Custom Highlighting. Original patch by Mark Roseman. |
| 98 | |
Terry Jan Reedy | da10017 | 2015-09-28 23:38:46 -0400 | [diff] [blame] | 99 | - Issue #24972: Inactive selection background now matches active selection |
Terry Jan Reedy | e4679e4 | 2015-11-21 13:31:00 -0500 | [diff] [blame] | 100 | background, as configured by users, on all systems. Found items are now |
Terry Jan Reedy | da10017 | 2015-09-28 23:38:46 -0400 | [diff] [blame] | 101 | always highlighted on Windows. Initial patch by Mark Roseman. |
| 102 | |
| 103 | - Issue #24570: Idle: make calltip and completion boxes appear on Macs |
| 104 | affected by a tk regression. Initial patch by Mark Roseman. |
| 105 | |
| 106 | - Issue #24988: Idle ScrolledList context menus (used in debugger) |
| 107 | now work on Mac Aqua. Patch by Mark Roseman. |
| 108 | |
| 109 | - Issue #24801: Make right-click for context menu work on Mac Aqua. |
| 110 | Patch by Mark Roseman. |
| 111 | |
| 112 | - Issue #25173: Associate tkinter messageboxes with a specific widget. |
| 113 | For Mac OSX, make them a 'sheet'. Patch by Mark Roseman. |
| 114 | |
| 115 | - Issue #25198: Enhance the initial html viewer now used for Idle Help. |
| 116 | * Properly indent fixed-pitch text (patch by Mark Roseman). |
| 117 | * Give code snippet a very Sphinx-like light blueish-gray background. |
| 118 | * Re-use initial width and height set by users for shell and editor. |
| 119 | * When the Table of Contents (TOC) menu is used, put the section header |
Terry Jan Reedy | e4679e4 | 2015-11-21 13:31:00 -0500 | [diff] [blame] | 120 | at the top of the screen. |
Terry Jan Reedy | da10017 | 2015-09-28 23:38:46 -0400 | [diff] [blame] | 121 | |
| 122 | - Issue #25225: Condense and rewrite Idle doc section on text colors. |
| 123 | |
| 124 | - Issue #21995: Explain some differences between IDLE and console Python. |
| 125 | |
| 126 | - Issue #22820: Explain need for *print* when running file from Idle editor. |
| 127 | |
| 128 | - Issue #25224: Doc: augment Idle feature list and no-subprocess section. |
| 129 | |
| 130 | - Issue #25219: Update doc for Idle command line options. |
| 131 | Some were missing and notes were not correct. |
| 132 | |
Terry Jan Reedy | 4dd7887 | 2015-09-21 19:28:18 -0400 | [diff] [blame] | 133 | - Issue #24861: Most of idlelib is private and subject to change. |
Terry Jan Reedy | da10017 | 2015-09-28 23:38:46 -0400 | [diff] [blame] | 134 | Use idleib.idle.* to start Idle. See idlelib.__init__.__doc__. |
Terry Jan Reedy | 4dd7887 | 2015-09-21 19:28:18 -0400 | [diff] [blame] | 135 | |
Terry Jan Reedy | 1d2ce97 | 2015-09-21 01:07:54 -0400 | [diff] [blame] | 136 | - Issue #25199: Idle: add synchronization comments for future maintainers. |
| 137 | |
Terry Jan Reedy | 13b21f8 | 2015-09-21 22:36:36 -0400 | [diff] [blame] | 138 | - Issue #16893: Replace help.txt with help.html for Idle doc display. |
| 139 | The new idlelib/help.html is rstripped Doc/build/html/library/idle.html. |
Terry Jan Reedy | 1d2ce97 | 2015-09-21 01:07:54 -0400 | [diff] [blame] | 140 | It looks better than help.txt and will better document Idle as released. |
Terry Jan Reedy | 4dd7887 | 2015-09-21 19:28:18 -0400 | [diff] [blame] | 141 | The tkinter html viewer that works for this file was written by Mark Roseman. |
Terry Jan Reedy | 1d2ce97 | 2015-09-21 01:07:54 -0400 | [diff] [blame] | 142 | The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated. |
| 143 | |
| 144 | - Issue #24199: Deprecate unused idlelib.idlever with possible removal in 3.6. |
| 145 | |
Terry Jan Reedy | 1d2ce97 | 2015-09-21 01:07:54 -0400 | [diff] [blame] | 146 | - Issue #24790: Remove extraneous code (which also create 2 & 3 conflicts). |
Terry Jan Reedy | ea42876 | 2015-08-16 23:22:32 -0400 | [diff] [blame] | 147 | |
| 148 | - Issue #23672: Allow Idle to edit and run files with astral chars in name. |
| 149 | Patch by Mohd Sanad Zaki Rizvi. |
| 150 | |
| 151 | - Issue 24745: Idle editor default font. Switch from Courier to |
| 152 | platform-sensitive TkFixedFont. This should not affect current customized |
| 153 | font selections. If there is a problem, edit $HOME/.idlerc/config-main.cfg |
| 154 | and remove 'fontxxx' entries from [Editor Window]. Patch by Mark Roseman. |
| 155 | |
| 156 | - Issue #21192: Idle editor. When a file is run, put its name in the restart bar. |
| 157 | Do not print false prompts. Original patch by Adnan Umer. |
| 158 | |
| 159 | - Issue #13884: Idle menus. Remove tearoff lines. Patch by Roger Serwy. |
| 160 | |
| 161 | - Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for |
| 162 | decoding unicode literals. |
| 163 | |
| 164 | |
Terry Jan Reedy | 3dc4082 | 2015-05-23 17:23:23 -0400 | [diff] [blame] | 165 | What's New in IDLE 2.7.10? |
| 166 | ========================= |
Terry Jan Reedy | ea42876 | 2015-08-16 23:22:32 -0400 | [diff] [blame] | 167 | *Release date: 2015-05-23* |
Terry Jan Reedy | 3dc4082 | 2015-05-23 17:23:23 -0400 | [diff] [blame] | 168 | |
| 169 | - Issue #23583: Fixed writing unicode to standard output stream in IDLE. |
| 170 | |
| 171 | - Issue #20577: Configuration of the max line length for the FormatParagraph |
| 172 | extension has been moved from the General tab of the Idle preferences dialog |
| 173 | to the FormatParagraph tab of the Config Extensions dialog. |
| 174 | Patch by Tal Einat. |
| 175 | |
| 176 | - Issue #16893: Update Idle doc chapter to match current Idle and add new |
| 177 | information. |
| 178 | |
| 179 | - Issue #23180: Rename IDLE "Windows" menu item to "Window". |
| 180 | Patch by Al Sweigart. |
| 181 | |
| 182 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 183 | What's New in IDLE 2.7.9? |
| 184 | ========================= |
Terry Jan Reedy | ea42876 | 2015-08-16 23:22:32 -0400 | [diff] [blame] | 185 | *Release date: 2014-12-10* |
Terry Jan Reedy | f0ee672 | 2014-12-05 20:49:23 -0500 | [diff] [blame] | 186 | |
| 187 | - Issue #16893: Update Idle doc chapter to match current Idle and add new |
| 188 | information. |
| 189 | |
| 190 | - Issue #3068: Add Idle extension configuration dialog to Options menu. |
| 191 | Changes are written to HOME/.idlerc/config-extensions.cfg. |
| 192 | Original patch by Tal Einat. |
| 193 | |
Martin Panter | bf2dca9 | 2016-07-11 07:51:37 +0000 | [diff] [blame] | 194 | - Issue #16233: A module browser (File : Class Browser, Alt+C) requires an |
Terry Jan Reedy | f0ee672 | 2014-12-05 20:49:23 -0500 | [diff] [blame] | 195 | editor window with a filename. When Class Browser is requested otherwise, |
| 196 | from a shell, output window, or 'Untitled' editor, Idle no longer displays |
| 197 | an error box. It now pops up an Open Module box (Alt+M). If a valid name |
| 198 | is entered and a module is opened, a corresponding browser is also opened. |
| 199 | |
| 200 | - Issue #4832: Save As to type Python files automatically adds .py to the |
| 201 | name you enter (even if your system does not display it). Some systems |
| 202 | automatically add .txt when type is Text files. |
| 203 | |
| 204 | - Issue #21986: Code objects are not normally pickled by the pickle module. |
| 205 | To match this, they are no longer pickled when running under Idle. |
| 206 | |
| 207 | - Issue #22221: IDLE now ignores the source encoding declaration on the second |
| 208 | line if the first line contains anything except a comment. |
| 209 | |
| 210 | - Issue #17390: Adjust Editor window title; remove 'Python', |
| 211 | move version to end. |
| 212 | |
| 213 | - Issue #14105: Idle debugger breakpoints no longer disappear |
Martin Panter | 2dafcc2 | 2016-02-10 01:17:51 +0000 | [diff] [blame] | 214 | when inserting or deleting lines. |
Terry Jan Reedy | f0ee672 | 2014-12-05 20:49:23 -0500 | [diff] [blame] | 215 | |
| 216 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 217 | What's New in IDLE 2.7.8? |
| 218 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 219 | *Release date: 2014-06-29* |
| 220 | |
| 221 | - Issue #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav |
| 222 | Heblikar. |
| 223 | |
| 224 | - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster. |
| 225 | |
| 226 | - Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar. |
| 227 | |
| 228 | - Issue #21686: add unittest for HyperParser. Original patch by Saimadhav |
| 229 | Heblikar. |
| 230 | |
| 231 | - Issue #12387: Add missing upper(lower)case versions of default Windows key |
| 232 | bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy. |
| 233 | |
| 234 | - Issue #21695: Closing a Find-in-files output window while the search is |
| 235 | still in progress no longer closes Idle. |
| 236 | |
| 237 | - Issue #18910: Add unittest for textView. Patch by Phil Webster. |
| 238 | |
| 239 | - Issue #18292: Add unittest for AutoExpand. Patch by Saihadhav Heblikar. |
| 240 | |
| 241 | - Issue #18409: Add unittest for AutoComplete. Patch by Phil Webster. |
| 242 | |
| 243 | |
| 244 | What's New in IDLE 2.7.7? |
| 245 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 246 | *Release date: 2014-05-31* |
| 247 | |
| 248 | - Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin |
| 249 | consolidating and improving human-validated tests of Idle. Change other files |
| 250 | as needed to work with htest. Running the module as __main__ runs all tests. |
| 251 | |
| 252 | - Issue #21139: Change default paragraph width to 72, the PEP 8 recommendation. |
| 253 | |
| 254 | - Issue #21284: Paragraph reformat test passes after user changes reformat width. |
| 255 | |
| 256 | - Issue #20406: Use Python application icons for Idle window title bars. |
| 257 | Patch mostly by Serhiy Storchaka. |
| 258 | |
| 259 | - Issue #21029: Occurrences of "print" are now consistently colored as |
| 260 | being a keyword (the colorizer doesn't know if print functions are |
| 261 | enabled in the source). |
| 262 | |
| 263 | - Issue #17721: Remove non-functional configuration dialog help button until we |
| 264 | make it actually gives some help when clicked. Patch by Guilherme Simões. |
| 265 | |
| 266 | - Issue #17390: Add Python version to Idle editor window title bar. |
| 267 | Original patches by Edmond Burnett and Kent Johnson. |
| 268 | |
| 269 | - Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. |
| 270 | |
| 271 | - Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE |
| 272 | no more hangs. |
| 273 | |
| 274 | - Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial |
| 275 | shell window is present. |
| 276 | |
| 277 | - Issue #17654: Ensure IDLE menus are customized properly on OS X for |
| 278 | non-framework builds and for all variants of Tk. |
| 279 | |
| 280 | |
| 281 | What's New in IDLE 2.7.6? |
| 282 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 283 | *Release date: 2013-11-10* |
| 284 | |
| 285 | - Issue #19426: Fixed the opening of Python source file with specified encoding. |
| 286 | |
| 287 | - Issue #18873: IDLE now detects Python source code encoding only in comment |
| 288 | lines. |
| 289 | |
| 290 | - Issue #18988: The "Tab" key now works when a word is already autocompleted. |
| 291 | |
| 292 | - Issue #18489: Add tests for SearchEngine. Original patch by Phil Webster. |
| 293 | |
| 294 | - Issue #18429: Format / Format Paragraph, now works when comment blocks |
| 295 | are selected. As with text blocks, this works best when the selection |
| 296 | only includes complete lines. |
| 297 | |
| 298 | - Issue #18226: Add docstrings and unittests for FormatParagraph.py. |
| 299 | Original patches by Todd Rovito and Phil Webster. |
| 300 | |
| 301 | - Issue #18279: Format - Strip trailing whitespace no longer marks a file as |
| 302 | changed when it has not been changed. This fix followed the addition of a |
| 303 | test file originally written by Phil Webster (the issue's main goal). |
| 304 | |
| 305 | - Issue #18539: Calltips now work for float default arguments. |
| 306 | |
| 307 | - Issue #7136: In the Idle File menu, "New Window" is renamed "New File". |
| 308 | Patch by Tal Einat, Roget Serwy, and Todd Rovito. |
| 309 | |
| 310 | - Issue #8515: Set __file__ when run file in IDLE. |
| 311 | Initial patch by Bruce Frederiksen. |
| 312 | |
| 313 | - Issue #5492: Avoid traceback when exiting IDLE caused by a race condition. |
| 314 | |
| 315 | - Issue #17511: Keep IDLE find dialog open after clicking "Find Next". |
| 316 | Original patch by Sarah K. |
| 317 | |
| 318 | - Issue #15392: Create a unittest framework for IDLE. |
| 319 | Preliminary patch by Rajagopalasarma Jayakrishnan |
| 320 | See Lib/idlelib/idle_test/README.txt for how to run Idle tests. |
| 321 | |
| 322 | - Issue #14146: Highlight source line while debugging on Windows. |
| 323 | |
| 324 | - Issue #17532: Always include Options menu for IDLE on OS X. |
| 325 | Patch by Guilherme Simões. |
| 326 | |
| 327 | |
Terry Jan Reedy | d676a3a | 2013-03-30 18:50:43 -0400 | [diff] [blame] | 328 | What's New in IDLE 2.7.5? |
| 329 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 330 | *Release date: 2013-05-12* |
| 331 | |
| 332 | - Issue #17838: Allow sys.stdin to be reassigned. |
| 333 | |
| 334 | - Issue #14735: Update IDLE docs to omit "Control-z on Windows". |
| 335 | |
| 336 | - Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit(). |
| 337 | |
| 338 | - Issue #17657: Show full Tk version in IDLE's about dialog. |
| 339 | Patch by Todd Rovito. |
| 340 | |
| 341 | - Issue #17613: Prevent traceback when removing syntax colorizer in IDLE. |
| 342 | |
| 343 | - Issue #1207589: Backwards-compatibility patch for right-click menu in IDLE. |
| 344 | |
| 345 | - Issue #16887: IDLE now accepts Cancel in tabify/untabify dialog box. |
| 346 | |
| 347 | - Issue #14254: IDLE now handles readline correctly across shell restarts. |
| 348 | |
| 349 | - Issue #17614: IDLE no longer raises exception when quickly closing a file. |
| 350 | |
| 351 | - Issue #6698: IDLE now opens just an editor window when configured to do so. |
| 352 | |
| 353 | - Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer |
| 354 | raises an exception. |
| 355 | |
| 356 | - Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo. |
| 357 | |
Terry Jan Reedy | d676a3a | 2013-03-30 18:50:43 -0400 | [diff] [blame] | 358 | - Issue #17390: Display Python version on Idle title bar. |
| 359 | Initial patch by Edmond Burnett. |
| 360 | |
| 361 | |
Terry Jan Reedy | 5525eb7 | 2012-06-07 19:50:30 -0400 | [diff] [blame] | 362 | What's New in IDLE 2.7.4? |
| 363 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 364 | *Release date: 2013-04-06* |
| 365 | |
| 366 | - Issue #17625: In IDLE, close the replace dialog after it is used. |
| 367 | |
| 368 | - IDLE was displaying spurious SystemExit tracebacks when running scripts |
| 369 | that terminated by raising SystemExit (i.e. unittest and turtledemo). |
| 370 | |
| 371 | - Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase |
| 372 | interface and support all mandatory methods and properties. |
| 373 | |
| 374 | - Issue #16829: IDLE printing no longer fails if there are spaces or other |
| 375 | special characters in the file path. |
| 376 | |
| 377 | - Issue #16819: IDLE method completion now correctly works for unicode literals. |
| 378 | |
| 379 | - Issue #16504: IDLE now catches SyntaxErrors raised by tokenizer. Patch by |
| 380 | Roger Serwy. |
| 381 | |
| 382 | - Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu |
| 383 | Patch by Todd Rovito. |
| 384 | |
| 385 | - Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog |
| 386 | ended with '\'. Patch by Roger Serwy. |
| 387 | |
| 388 | - Issue #9803: Don't close IDLE on saving if breakpoint is open. |
| 389 | Patch by Roger Serwy. |
| 390 | |
| 391 | - Issue #14958: Change IDLE systax highlighting to recognize all string and byte |
| 392 | literals currently supported in Python 2.7. |
| 393 | |
| 394 | - Issue #14962: Update text coloring in IDLE shell window after changing |
| 395 | options. Patch by Roger Serwy. |
| 396 | |
| 397 | - Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. |
| 398 | |
| 399 | - Issue #12510: Attempting to get invalid tooltip no longer closes IDLE. |
| 400 | Original patch by Roger Serwy. |
| 401 | |
| 402 | - Issue #10365: File open dialog now works instead of crashing |
| 403 | even when parent window is closed. Patch by Roger Serwy. |
| 404 | |
| 405 | - Issue #14876: Use user-selected font for highlight configuration. |
| 406 | Patch by Roger Serwy. |
| 407 | |
| 408 | - Issue #14409: IDLE now properly executes commands in the Shell window |
| 409 | when it cannot read the normal config files on startup and |
| 410 | has to use the built-in default key bindings. |
| 411 | There was previously a bug in one of the defaults. |
| 412 | |
| 413 | - Issue #3573: IDLE hangs when passing invalid command line args |
| 414 | (directory(ies) instead of file(s)) (Patch by Guilherme Polo) |
| 415 | |
| 416 | - Issue #5219: Prevent event handler cascade in IDLE. |
| 417 | |
Martin v. Löwis | e2b5624 | 2012-07-25 10:56:22 +0200 | [diff] [blame] | 418 | - Issue #15318: Prevent writing to sys.stdin. |
| 419 | |
Martin v. Löwis | dbde886 | 2012-07-11 08:32:05 +0200 | [diff] [blame] | 420 | - Issue #13532, #15319: Check that arguments to sys.stdout.write are strings. |
Martin v. Löwis | e8e4e14 | 2012-07-09 21:01:49 +0200 | [diff] [blame] | 421 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 422 | - Issue #10365: File open dialog now works instead of crashing even when |
Terry Jan Reedy | 5525eb7 | 2012-06-07 19:50:30 -0400 | [diff] [blame] | 423 | parent window is closed while dialog is open. |
| 424 | |
Ned Deily | 38df514 | 2012-07-30 03:28:22 -0700 | [diff] [blame] | 425 | - Issue #14018: Update checks for unstable system Tcl/Tk versions on OS X |
| 426 | to include versions shipped with OS X 10.7 and 10.8 in addition to 10.6. |
| 427 | |
Ned Deily | e3d4712 | 2012-10-22 15:13:01 -0700 | [diff] [blame] | 428 | - Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu |
| 429 | with certain versions of Tk 8.5. Initial patch by Kevin Walzer. |
| 430 | |
Terry Jan Reedy | 5525eb7 | 2012-06-07 19:50:30 -0400 | [diff] [blame] | 431 | |
Andrew Svetlov | 7c010ee | 2012-03-21 13:35:08 +0200 | [diff] [blame] | 432 | What's New in IDLE 2.7.3? |
Terry Jan Reedy | 5525eb7 | 2012-06-07 19:50:30 -0400 | [diff] [blame] | 433 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 434 | *Release date: 2012-04-09* |
| 435 | |
| 436 | - Issue #964437 Make IDLE help window non-modal. |
| 437 | Patch by Guilherme Polo and Roger Serwy. |
| 438 | |
| 439 | - Issue #13933: IDLE auto-complete did not work with some imported |
| 440 | module, like hashlib. (Patch by Roger Serwy) |
| 441 | |
| 442 | - Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell. |
| 443 | Original patches by Marco Scataglini and Roger Serwy. |
| 444 | |
| 445 | - Issue #4625: If IDLE cannot write to its recent file or breakpoint |
| 446 | files, display a message popup and continue rather than crash. |
| 447 | (original patch by Roger Serwy) |
| 448 | |
| 449 | - Issue #8793: Prevent IDLE crash when given strings with invalid hex escape |
| 450 | sequences. |
| 451 | |
| 452 | - Issue #13296: Fix IDLE to clear compile __future__ flags on shell restart. |
| 453 | (Patch by Roger Serwy) |
| 454 | |
Andrew Svetlov | 8af8729 | 2012-03-31 14:34:16 +0300 | [diff] [blame] | 455 | - Issue #14409: IDLE now properly executes commands in the Shell window |
| 456 | when it cannot read the normal config files on startup and |
| 457 | has to use the built-in default key bindings. |
| 458 | There was previously a bug in one of the defaults. |
Andrew Svetlov | c37db10 | 2012-03-29 19:54:58 +0300 | [diff] [blame] | 459 | |
Andrew Svetlov | 7c010ee | 2012-03-21 13:35:08 +0200 | [diff] [blame] | 460 | - Issue #3573: IDLE hangs when passing invalid command line args |
| 461 | (directory(ies) instead of file(s)). |
| 462 | |
| 463 | |
Kurt B. Kaiser | 020d3d9 | 2011-03-17 00:05:38 -0400 | [diff] [blame] | 464 | What's New in IDLE 2.7.2? |
Terry Jan Reedy | 5525eb7 | 2012-06-07 19:50:30 -0400 | [diff] [blame] | 465 | ========================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 466 | *Release date: 2011-06-11* |
| 467 | |
| 468 | - Issue #11718: IDLE's open module dialog couldn't find the __init__.py |
| 469 | file in a package. |
| 470 | |
| 471 | - Issue #12590: IDLE editor window now always displays the first line |
| 472 | when opening a long file. With Tk 8.5, the first line was hidden. |
| 473 | |
| 474 | - Issue #11088: don't crash when using F5 to run a script in IDLE on MacOSX |
| 475 | with Tk 8.5. |
| 476 | |
| 477 | - Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the |
| 478 | menu accelerators for Open Module, Go to Line, and New Indent Width. |
| 479 | The accelerators still work but no longer appear in the menu items. |
| 480 | |
| 481 | - Issue #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather |
| 482 | than the currently problematic Apple-supplied one, when running with the |
| 483 | 64-/32-bit installer variant. |
| 484 | |
| 485 | - Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save |
| 486 | commands. |
| 487 | |
| 488 | - Issue #6075: IDLE on Mac OS X now works with both Carbon AquaTk and |
| 489 | Cocoa AquaTk. |
| 490 | |
| 491 | - Issue #10404: Use ctl-button-1 on OSX for the context menu in Idle. |
| 492 | |
| 493 | - Issue #10107: Warn about unsaved files in IDLE on OSX. |
| 494 | |
| 495 | - Issue #10406: Enable Rstrip IDLE extension on OSX (just like on other |
| 496 | platforms). |
Kurt B. Kaiser | 020d3d9 | 2011-03-17 00:05:38 -0400 | [diff] [blame] | 497 | |
Kurt B. Kaiser | a539245 | 2011-05-25 22:36:51 -0400 | [diff] [blame] | 498 | - Issue #6378: Further adjust idle.bat to start associated Python |
Kurt B. Kaiser | d82a887 | 2011-05-12 21:18:47 -0400 | [diff] [blame] | 499 | |
| 500 | - Issue #11896: Save on Close failed despite selecting "Yes" in dialog. |
| 501 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 502 | - Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and |
| 503 | strange selection behavior. Improve selection extension behaviour. |
Kurt B. Kaiser | d82a887 | 2011-05-12 21:18:47 -0400 | [diff] [blame] | 504 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 505 | - Issue #3851 <Home> toggle non-functional when NumLock set on Windows. |
| 506 | |
| 507 | |
| 508 | What's New in Python 2.7.1? |
| 509 | =========================== |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 510 | *Release date: 2010-11-27* |
| 511 | |
| 512 | - Issue #6378: idle.bat now runs with the appropriate Python version rather than |
| 513 | the system default. Patch by Sridhar Ratnakumar. |
Kurt B. Kaiser | 7548bce | 2011-03-25 17:48:27 -0400 | [diff] [blame] | 514 | |
Kurt B. Kaiser | 020d3d9 | 2011-03-17 00:05:38 -0400 | [diff] [blame] | 515 | |
Benjamin Peterson | 743242a | 2010-07-03 13:49:03 +0000 | [diff] [blame] | 516 | What's New in IDLE 2.7? |
| 517 | ======================= |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 518 | *Release date: 2010-07-03* |
| 519 | |
| 520 | - Issue #5150: IDLE's format menu now has an option to strip trailing |
| 521 | whitespace. |
| 522 | |
| 523 | - Issue #5847: Remove -n switch on "Edit with IDLE" menu item. |
Amaury Forgeot d'Arc | dd8d824 | 2008-04-21 22:35:30 +0000 | [diff] [blame] | 524 | |
Kurt B. Kaiser | 106ac46 | 2009-05-03 01:03:44 +0000 | [diff] [blame] | 525 | - idle.py modified and simplified to better support developing experimental |
| 526 | versions of IDLE which are not installed in the standard location. |
| 527 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 528 | - Issue #5559: OutputWindow/PyShell right click menu "Go to file/line" |
| 529 | wasn't working with file paths containing spaces. |
Kurt B. Kaiser | 94290d3 | 2009-04-26 23:22:11 +0000 | [diff] [blame] | 530 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 531 | - Issue #5783: Windows: Version string for the .chm help file changed, |
| 532 | file not being accessed Patch by Guilherme Polo/ |
Kurt B. Kaiser | f13447f | 2009-04-23 02:36:01 +0000 | [diff] [blame] | 533 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 534 | - Issue #1529142: Allow multiple IDLE GUI/subprocess pairs to exist |
| 535 | simultaneously. Thanks to David Scherer for suggesting the use of an |
| 536 | ephemeral port for the GUI. Patch by Weeble. |
Kurt B. Kaiser | 013d6cc | 2009-04-04 07:03:48 +0000 | [diff] [blame] | 537 | |
Kurt B. Kaiser | 4724f40 | 2009-04-02 02:44:54 +0000 | [diff] [blame] | 538 | - Remove port spec from run.py and fix bug where subprocess fails to |
| 539 | extract port from command line when warnings are present. |
| 540 | |
Terry Jan Reedy | 6e9a3ac | 2014-07-14 02:07:26 -0400 | [diff] [blame] | 541 | - Issue #5129: Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr |
| 542 | to handle mixed space/tab properly. Patch by Guilherme Polo. |
Kurt B. Kaiser | d82a887 | 2011-05-12 21:18:47 -0400 | [diff] [blame] | 543 | |
Ronald Oussoren | 8c95484 | 2009-01-02 12:59:32 +0000 | [diff] [blame] | 544 | - Issue #3549: On MacOS the preferences menu was not present |
| 545 | |
Martin v. Löwis | 7d7e1b7 | 2009-01-24 15:45:18 +0000 | [diff] [blame] | 546 | |
| 547 | What's New in IDLE 2.6? |
| 548 | ======================= |
Martin v. Löwis | 7d7e1b7 | 2009-01-24 15:45:18 +0000 | [diff] [blame] | 549 | *Release date: 01-Oct-2008* |
| 550 | |
Amaury Forgeot d'Arc | dd8d824 | 2008-04-21 22:35:30 +0000 | [diff] [blame] | 551 | - Issue #2665: On Windows, an IDLE installation upgraded from an old version |
| 552 | would not start if a custom theme was defined. |
| 553 | |
Kurt B. Kaiser | 93cdae5 | 2008-04-27 21:07:41 +0000 | [diff] [blame] | 554 | - Home / Control-A toggles between left margin and end of leading white |
| 555 | space. Patch 1196903 Jeff Shute. |
| 556 | |
Kurt B. Kaiser | 8310190 | 2008-04-27 21:52:19 +0000 | [diff] [blame] | 557 | - Improved AutoCompleteWindow logic. Patch 2062 Tal Einat. |
| 558 | |
| 559 | - Autocompletion of filenames now support alternate separators, e.g. the |
| 560 | '/' char on Windows. Patch 2061 Tal Einat. |
Kurt B. Kaiser | 9c5c0af | 2008-04-27 21:38:05 +0000 | [diff] [blame] | 561 | |
Kurt B. Kaiser | f05fa33 | 2008-02-15 22:25:09 +0000 | [diff] [blame] | 562 | - Configured selection highlighting colors were ignored; updating highlighting |
| 563 | in the config dialog would cause non-Python files to be colored as if they |
| 564 | were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat. |
| 565 | |
Kurt B. Kaiser | e312cfd | 2008-02-15 21:56:36 +0000 | [diff] [blame] | 566 | - ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat. |
| 567 | |
Kurt B. Kaiser | f30ba3d | 2008-01-23 22:55:26 +0000 | [diff] [blame] | 568 | - There was an error on exit if no sys.exitfunc was defined. Issue 1647. |
| 569 | |
Kurt B. Kaiser | b4aaa76 | 2008-01-23 22:19:23 +0000 | [diff] [blame] | 570 | - Could not open files in .idlerc directory if latter was hidden on Windows. |
| 571 | Issue 1743, Issue 1862. |
Anthony Baxter | 78b1a08 | 2006-08-18 07:29:02 +0000 | [diff] [blame] | 572 | |
Kurt B. Kaiser | 28c7bcf | 2007-12-28 04:18:01 +0000 | [diff] [blame] | 573 | - Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat. |
| 574 | |
Kurt B. Kaiser | 20172f9 | 2007-10-30 02:38:54 +0000 | [diff] [blame] | 575 | - tabpage.py updated: tabbedPages.py now supports multiple dynamic rows |
| 576 | of tabs. Patch 1612746 Tal Einat. |
| 577 | |
Kurt B. Kaiser | 60d5840 | 2007-10-28 19:03:59 +0000 | [diff] [blame] | 578 | - Add confirmation dialog before printing. Patch 1717170 Tal Einat. |
| 579 | |
Kurt B. Kaiser | 631fee6 | 2007-10-10 01:06:47 +0000 | [diff] [blame] | 580 | - Show paste position if > 80 col. Patch 1659326 Tal Einat. |
| 581 | |
Kurt B. Kaiser | cca976b | 2007-10-10 00:55:40 +0000 | [diff] [blame] | 582 | - Update cursor color without restarting. Patch 1725576 Tal Einat. |
| 583 | |
Kurt B. Kaiser | c8f65e6 | 2007-10-09 19:31:30 +0000 | [diff] [blame] | 584 | - Allow keyboard interrupt only when user code is executing in subprocess. |
| 585 | Patch 1225 Tal Einat (reworked from IDLE-Spoon). |
| 586 | |
Kurt B. Kaiser | e3fde8f | 2007-10-04 03:11:12 +0000 | [diff] [blame] | 587 | - configDialog cleanup. Patch 1730217 Tal Einat. |
| 588 | |
Kurt B. Kaiser | d5f4910 | 2007-10-04 02:53:07 +0000 | [diff] [blame] | 589 | - textView cleanup. Patch 1718043 Tal Einat. |
| 590 | |
Kurt B. Kaiser | 0b634ef | 2007-10-04 02:09:17 +0000 | [diff] [blame] | 591 | - Clean up EditorWindow close. |
| 592 | |
Kurt B. Kaiser | ac45aff | 2008-02-14 00:08:55 +0000 | [diff] [blame] | 593 | - Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204. |
| 594 | |
| 595 | - OSX: Avoid crash for those versions of Tcl/Tk which don't have a console |
| 596 | |
| 597 | - Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an |
| 598 | option in config-extensions w/o a value. Patch #1672481, Tal Einat |
| 599 | |
Kurt B. Kaiser | 209de1f | 2007-02-08 22:58:18 +0000 | [diff] [blame] | 600 | - Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented; |
| 601 | mouse and cursor selection in ACWindow implemented; double Tab inserts |
| 602 | current selection and closes ACW (similar to double-click and Return); scroll |
| 603 | wheel now works in ACW. Added AutoComplete instructions to IDLE Help. |
| 604 | |
Kurt B. Kaiser | ca30acf | 2007-02-07 03:39:41 +0000 | [diff] [blame] | 605 | - AutoCompleteWindow moved below input line, will move above if there |
| 606 | isn't enough space. Patch 1621265 Tal Einat |
| 607 | |
Kurt B. Kaiser | ecf796e | 2007-02-05 23:02:16 +0000 | [diff] [blame] | 608 | - Calltips now 'handle' tuples in the argument list (display '<tuple>' :) |
| 609 | Suggested solution by Christos Georgiou, Bug 791968. |
| 610 | |
Kurt B. Kaiser | 90f8492 | 2007-02-05 06:03:18 +0000 | [diff] [blame] | 611 | - Add 'raw' support to configHandler. Patch 1650174 Tal Einat. |
| 612 | |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 613 | - Avoid hang when encountering a duplicate in a completion list. Bug 1571112. |
| 614 | |
Martin v. Löwis | 8609da9 | 2006-12-03 09:54:46 +0000 | [diff] [blame] | 615 | - Patch #1362975: Rework CodeContext indentation algorithm to |
| 616 | avoid hard-coding pixel widths. |
| 617 | |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 618 | - Bug #813342: Start the IDLE subprocess with -Qnew if the parent |
| 619 | is started with that option. |
| 620 | |
Kurt B. Kaiser | 0b634ef | 2007-10-04 02:09:17 +0000 | [diff] [blame] | 621 | - Honor the "Cancel" action in the save dialog (Debian bug #299092) |
| 622 | |
Kurt B. Kaiser | c426ffc | 2006-10-01 21:16:45 +0000 | [diff] [blame] | 623 | - Some syntax errors were being caught by tokenize during the tabnanny |
| 624 | check, resulting in obscure error messages. Do the syntax check |
| 625 | first. Bug 1562716, 1562719 |
| 626 | |
Anthony Baxter | 78b1a08 | 2006-08-18 07:29:02 +0000 | [diff] [blame] | 627 | - IDLE's version number takes a big jump to match the version number of |
| 628 | the Python release of which it's a part. |
| 629 | |
| 630 | |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 631 | What's New in IDLE 1.2? |
| 632 | ======================= |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 633 | *Release date: 19-SEP-2006* |
| 634 | |
Kurt B. Kaiser | 7ae3548 | 2006-08-16 21:45:59 +0000 | [diff] [blame] | 635 | - File menu hotkeys: there were three 'p' assignments. Reassign the |
| 636 | 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the |
| 637 | Shell hotkey from 's' to 'l'. |
| 638 | |
Kurt B. Kaiser | d112bc7 | 2006-08-16 05:01:42 +0000 | [diff] [blame] | 639 | - IDLE honors new quit() and exit() commands from site.py Quitter() object. |
| 640 | Patch 1540892, Jim Jewett |
| 641 | |
| 642 | - The 'with' statement is now a Code Context block opener. |
| 643 | Patch 1540851, Jim Jewett |
Kurt B. Kaiser | 2a7ff29 | 2006-08-16 03:15:26 +0000 | [diff] [blame] | 644 | |
Kurt B. Kaiser | cd3d8be | 2006-08-10 17:11:09 +0000 | [diff] [blame] | 645 | - Retrieval of previous shell command was not always preserving indentation |
| 646 | (since 1.2a1) Patch 1528468 Tal Einat. |
| 647 | |
Kurt B. Kaiser | 1fe9ca0 | 2006-08-10 01:41:17 +0000 | [diff] [blame] | 648 | - Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1) |
| 649 | |
Kurt B. Kaiser | 53f2b5f | 2006-08-09 20:34:46 +0000 | [diff] [blame] | 650 | - ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1). |
| 651 | |
Andrew M. Kuchling | faeeab7 | 2006-08-09 18:23:14 +0000 | [diff] [blame] | 652 | - When used w/o subprocess, all exceptions were preceded by an error |
Kurt B. Kaiser | 312e5af | 2006-08-09 16:46:15 +0000 | [diff] [blame] | 653 | message claiming they were IDLE internal errors (since 1.2a1). |
| 654 | |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 655 | - Bug #1525817: Don't truncate short lines in IDLE's tool tips. |
| 656 | |
| 657 | - Bug #1517990: IDLE keybindings on MacOS X now work correctly |
| 658 | |
| 659 | - Bug #1517996: IDLE now longer shows the default Tk menu when a |
| 660 | path browser, class browser or debugger is the frontmost window on MacOS X |
| 661 | |
Kurt B. Kaiser | a2946a4 | 2006-07-24 18:05:51 +0000 | [diff] [blame] | 662 | - EditorWindow.test() was failing. Bug 1417598 |
| 663 | |
Kurt B. Kaiser | b3c4d16 | 2006-07-24 17:13:23 +0000 | [diff] [blame] | 664 | - EditorWindow failed when used stand-alone if sys.ps1 not set. |
| 665 | Bug 1010370 Dave Florek |
| 666 | |
Kurt B. Kaiser | c6bacd5 | 2006-07-23 04:19:49 +0000 | [diff] [blame] | 667 | - Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie |
| 668 | |
Kurt B. Kaiser | 43476e0 | 2006-07-20 22:22:52 +0000 | [diff] [blame] | 669 | - Avoid occasional failure to detect closing paren properly. |
| 670 | Patch 1407280 Tal Einat |
| 671 | |
Kurt B. Kaiser | 4b7e35b | 2006-07-18 04:03:16 +0000 | [diff] [blame] | 672 | - Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168. |
| 673 | |
| 674 | - Colorizer now handles #<builtin> correctly, also unicode strings and |
| 675 | 'as' keyword in comment directly following import command. Closes 1325071. |
| 676 | Patch 1479219 Tal Einat |
| 677 | |
Kurt B. Kaiser | c3200b9 | 2006-12-15 05:13:11 +0000 | [diff] [blame] | 678 | - Patch #1162825: Support non-ASCII characters in IDLE window titles. |
| 679 | |
Kurt B. Kaiser | 70f05c5 | 2006-03-19 20:40:05 +0000 | [diff] [blame] | 680 | - Source file f.flush() after writing; trying to avoid lossage if user |
| 681 | kills GUI. |
| 682 | |
Kurt B. Kaiser | 5c6e0a1 | 2005-11-22 21:09:37 +0000 | [diff] [blame] | 683 | - Options / Keys / Advanced dialog made functional. Also, allow binding |
| 684 | of 'movement' keys. |
| 685 | |
| 686 | - 'syntax' patch adds improved calltips and a new class attribute listbox. |
| 687 | MultiCall module allows binding multiple actions to an event. |
| 688 | Patch 906702 Noam Raphael |
Kurt B. Kaiser | dcba662 | 2004-12-21 22:10:32 +0000 | [diff] [blame] | 689 | |
Kurt B. Kaiser | b61602c | 2005-11-15 07:20:06 +0000 | [diff] [blame] | 690 | - Better indentation after first line of string continuation. |
| 691 | IDLEfork Patch 681992, Noam Raphael |
| 692 | |
Kurt B. Kaiser | 389482c | 2005-10-03 20:08:25 +0000 | [diff] [blame] | 693 | - Fixed CodeContext alignment problem, following suggestion from Tal Einat. |
| 694 | |
Kurt B. Kaiser | 7491022 | 2005-10-02 23:36:46 +0000 | [diff] [blame] | 695 | - Increased performance in CodeContext extension Patch 936169 Noam Raphael |
| 696 | |
Kurt B. Kaiser | 2618c7f | 2005-08-23 02:27:23 +0000 | [diff] [blame] | 697 | - Mac line endings were incorrect when pasting code from some browsers |
| 698 | when using X11 and the Fink distribution. Python Bug 1263656. |
| 699 | |
Kurt B. Kaiser | a7daba6 | 2005-06-19 18:56:15 +0000 | [diff] [blame] | 700 | - <Enter> when cursor is on a previous command retrieves that command. Instead |
| 701 | of replacing the input line, the previous command is now appended to the |
| 702 | input line. Indentation is preserved, and undo is enabled. |
| 703 | Patch 1196917 Jeff Shute |
| 704 | |
Kurt B. Kaiser | ca7329c | 2005-06-12 05:19:23 +0000 | [diff] [blame] | 705 | - Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with |
| 706 | the Untabify command. |
| 707 | |
| 708 | - Corrected "tab/space" Error Dialog to show correct menu for Untabify. |
| 709 | Patch 1196980 Jeff Shute |
| 710 | |
Kurt B. Kaiser | df506ea | 2005-06-12 04:33:30 +0000 | [diff] [blame] | 711 | - New files are colorized by default, and colorizing is removed when |
| 712 | saving as non-Python files. Patch 1196895 Jeff Shute |
| 713 | Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524 |
| 714 | |
Kurt B. Kaiser | 935ea9a | 2005-05-10 03:44:24 +0000 | [diff] [blame] | 715 | - Improve subprocess link error notification. |
| 716 | |
Kurt B. Kaiser | 20345fb | 2005-05-05 23:29:54 +0000 | [diff] [blame] | 717 | - run.py: use Queue's blocking feature instead of sleeping in the main |
| 718 | loop. Patch # 1190163 Michiel de Hoon |
| 719 | |
Kurt B. Kaiser | 0676dfd | 2005-02-03 01:37:14 +0000 | [diff] [blame] | 720 | - Add config-main option to make the 'history' feature non-cyclic. |
| 721 | Default remains cyclic. Python Patch 914546 Noam Raphael. |
| 722 | |
Kurt B. Kaiser | acdef85 | 2005-01-31 03:34:26 +0000 | [diff] [blame] | 723 | - Removed ability to configure tabs indent from Options dialog. This 'feature' |
| 724 | has never worked and no one has complained. It is still possible to set a |
| 725 | default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on |
| 726 | tabs for the current EditorWindow via the Format menu) but IDLE will |
| 727 | encourage indentation via spaces. |
| 728 | |
| 729 | - Enable setting the indentation width using the Options dialog. |
| 730 | Bug # 783877 |
| 731 | |
Kurt B. Kaiser | 3069dbb | 2005-01-28 00:16:16 +0000 | [diff] [blame] | 732 | - Add keybindings for del-word-left and del-word-right. |
| 733 | |
Kurt B. Kaiser | 6af4498 | 2005-01-19 00:22:59 +0000 | [diff] [blame] | 734 | - Discourage using an indent width other than 8 when using tabs to indent |
| 735 | Python code. |
| 736 | |
| 737 | - Restore use of EditorWindow.set_indentation_params(), was dead code since |
Kurt B. Kaiser | 3069dbb | 2005-01-28 00:16:16 +0000 | [diff] [blame] | 738 | Autoindent was merged into EditorWindow. This allows IDLE to conform to the |
| 739 | indentation width of a loaded file. (But it still will not switch to tabs |
| 740 | even if the file uses tabs.) Any change in indent width is local to that |
| 741 | window. |
Kurt B. Kaiser | 6af4498 | 2005-01-19 00:22:59 +0000 | [diff] [blame] | 742 | |
| 743 | - Add Tabnanny check before Run/F5, not just when Checking module. |
| 744 | |
Kurt B. Kaiser | b00e89f | 2005-01-18 00:54:58 +0000 | [diff] [blame] | 745 | - If an extension can't be loaded, print warning and skip it instead of |
| 746 | erroring out. |
| 747 | |
Kurt B. Kaiser | 3069dbb | 2005-01-28 00:16:16 +0000 | [diff] [blame] | 748 | - Improve error handling when .idlerc can't be created (warn and exit). |
| 749 | |
Kurt B. Kaiser | 70f05c5 | 2006-03-19 20:40:05 +0000 | [diff] [blame] | 750 | - The GUI was hanging if the shell window was closed while a raw_input() |
Kurt B. Kaiser | 5c3df35 | 2004-12-23 04:20:59 +0000 | [diff] [blame] | 751 | was pending. Restored the quit() of the readline() mainloop(). |
| 752 | http://mail.python.org/pipermail/idle-dev/2004-December/002307.html |
| 753 | |
Kurt B. Kaiser | dcba662 | 2004-12-21 22:10:32 +0000 | [diff] [blame] | 754 | - The remote procedure call module rpc.py can now access data attributes of |
| 755 | remote registered objects. Changes to these attributes are local, however. |
| 756 | |
Terry Jan Reedy | da10017 | 2015-09-28 23:38:46 -0400 | [diff] [blame] | 757 | |
Anthony Baxter | e2648ee | 2004-11-30 01:28:55 +0000 | [diff] [blame] | 758 | What's New in IDLE 1.1? |
| 759 | ======================= |
Anthony Baxter | e2648ee | 2004-11-30 01:28:55 +0000 | [diff] [blame] | 760 | *Release date: 30-NOV-2004* |
Kurt B. Kaiser | e953511 | 2004-11-19 15:46:49 +0000 | [diff] [blame] | 761 | |
| 762 | - On OpenBSD, terminating IDLE with ctrl-c from the command line caused a |
| 763 | stuck subprocess MainThread because only the SocketThread was exiting. |
| 764 | |
Kurt B. Kaiser | 03562a5 | 2004-11-16 21:31:08 +0000 | [diff] [blame] | 765 | - Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set" |
| 766 | button) caused IDLE to fail on restart (no new keyset was created in |
| 767 | config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. |
| 768 | |
Kurt B. Kaiser | f7a8899 | 2004-11-13 21:05:58 +0000 | [diff] [blame] | 769 | - A change to the linecache.py API caused IDLE to exit when an exception was |
| 770 | raised while running without the subprocess (-n switch). Python Bug 1063840. |
| 771 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 772 | - When paragraph reformat width was made configurable, a bug was |
| 773 | introduced that caused reformatting of comment blocks to ignore how |
| 774 | far the block was indented, effectively adding the indentation width |
| 775 | to the reformat width. This has been repaired, and the reformat |
| 776 | width is again a bound on the total width of reformatted lines. |
| 777 | |
Kurt B. Kaiser | 183403a | 2004-08-22 05:14:32 +0000 | [diff] [blame] | 778 | - Improve keyboard focus binding, especially in Windows menu. Improve |
| 779 | window raising, especially in the Windows menu and in the debugger. |
| 780 | IDLEfork 763524. |
| 781 | |
Mark Dickinson | 3e4caeb | 2009-02-21 20:27:01 +0000 | [diff] [blame] | 782 | - If user passes a non-existent filename on the commandline, just |
Kurt B. Kaiser | 183403a | 2004-08-22 05:14:32 +0000 | [diff] [blame] | 783 | open a new file, don't raise a dialog. IDLEfork 854928. |
| 784 | |
Kurt B. Kaiser | 183403a | 2004-08-22 05:14:32 +0000 | [diff] [blame] | 785 | - EditorWindow.py was not finding the .chm help file on Windows. Typo |
| 786 | at Rev 1.54. Python Bug 990954 |
| 787 | |
Kurt B. Kaiser | 8aa2392 | 2004-07-15 04:54:57 +0000 | [diff] [blame] | 788 | - checking sys.platform for substring 'win' was breaking IDLE docs on Mac |
| 789 | (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580. |
| 790 | |
Kurt B. Kaiser | 49a5fe1 | 2004-07-04 01:25:56 +0000 | [diff] [blame] | 791 | - Redirect the warning stream to the shell during the ScriptBinding check of |
| 792 | user code and format the warning similarly to an exception for both that |
| 793 | check and for runtime warnings raised in the subprocess. |
| 794 | |
Kurt B. Kaiser | 4d5bc60 | 2004-06-06 01:29:22 +0000 | [diff] [blame] | 795 | - CodeContext hint pane visibility state is now persistent across sessions. |
| 796 | The pane no longer appears in the shell window. Added capability to limit |
| 797 | extensions to shell window or editor windows. Noam Raphael addition |
| 798 | to Patch 936169. |
| 799 | |
| 800 | - Paragraph reformat width is now a configurable parameter in the |
| 801 | Options GUI. |
| 802 | |
Kurt B. Kaiser | 54d1a3b | 2004-04-21 20:06:26 +0000 | [diff] [blame] | 803 | - New Extension: CodeContext. Provides block structuring hints for code |
| 804 | which has scrolled above an edit window. Patch 936169 Noam Raphael. |
| 805 | |
Kurt B. Kaiser | cf6f1b6 | 2004-04-11 03:16:07 +0000 | [diff] [blame] | 806 | - If nulls somehow got into the strings in recent-files.lst |
| 807 | EditorWindow.update_recent_files_list() was failing. Python Bug 931336. |
| 808 | |
Kurt B. Kaiser | 7491022 | 2005-10-02 23:36:46 +0000 | [diff] [blame] | 809 | - If the normal background is changed via Configure/Highlighting, it will |
| 810 | update immediately, thanks to the previously mentioned patch by Nigel Rowe. |
Kurt B. Kaiser | 0bc3d98 | 2004-03-15 04:26:37 +0000 | [diff] [blame] | 811 | |
Kurt B. Kaiser | 73360a3 | 2004-03-08 18:15:31 +0000 | [diff] [blame] | 812 | - Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe |
Kurt B. Kaiser | 7491022 | 2005-10-02 23:36:46 +0000 | [diff] [blame] | 813 | This also fixed IDLEfork bug [ 693418 ] Normal text background color not |
| 814 | refreshed and Python bug [897872 ] Unknown color name on HP-UX |
Kurt B. Kaiser | 73360a3 | 2004-03-08 18:15:31 +0000 | [diff] [blame] | 815 | |
Kurt B. Kaiser | d6ab77d | 2004-01-21 19:21:11 +0000 | [diff] [blame] | 816 | - rpc.py:SocketIO - Large modules were generating large pickles when downloaded |
| 817 | to the execution server. The return of the OK response from the subprocess |
| 818 | initialization was interfering and causing the sending socket to be not |
| 819 | ready. Add an IO ready test to fix this. Moved the polling IO ready test |
| 820 | into pollpacket(). |
| 821 | |
| 822 | - Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError". |
| 823 | |
Kurt B. Kaiser | af3eb87 | 2004-01-21 18:54:30 +0000 | [diff] [blame] | 824 | - Added a Tk error dialog to run.py inform the user if the subprocess can't |
| 825 | connect to the user GUI process. Added a timeout to the GUI's listening |
| 826 | socket. Added Tk error dialogs to PyShell.py to announce a failure to bind |
| 827 | the port or connect to the subprocess. Clean up error handling during |
| 828 | connection initiation phase. This is an update of Python Patch 778323. |
| 829 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 830 | - Print correct exception even if source file changed since shell was |
Kurt B. Kaiser | e9802a3 | 2004-01-02 04:04:04 +0000 | [diff] [blame] | 831 | restarted. IDLEfork Patch 869012 Noam Raphael |
Kurt B. Kaiser | b785518 | 2003-08-14 14:54:28 +0000 | [diff] [blame] | 832 | |
Kurt B. Kaiser | 2303b1c | 2003-11-24 05:26:16 +0000 | [diff] [blame] | 833 | - Keybindings with the Shift modifier now work correctly. So do bindings which |
| 834 | use the Space key. Limit unmodified user keybindings to the function keys. |
| 835 | Python Bug 775353, IDLEfork Bugs 755647, 761557 |
| 836 | |
Kurt B. Kaiser | 924f616 | 2003-11-19 04:52:32 +0000 | [diff] [blame] | 837 | - After an exception, run.py was not setting the exception vector. Noam |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 838 | Raphael suggested correcting this so pdb's postmortem pm() would work. |
Kurt B. Kaiser | 924f616 | 2003-11-19 04:52:32 +0000 | [diff] [blame] | 839 | IDLEfork Patch 844675 |
| 840 | |
Kurt B. Kaiser | c714d45 | 2003-11-24 03:23:16 +0000 | [diff] [blame] | 841 | - IDLE now does not fail to save the file anymore if the Tk buffer is not a |
| 842 | Unicode string, yet eol_convention is. Python Bugs 774680, 788378 |
| 843 | |
Kurt B. Kaiser | b785518 | 2003-08-14 14:54:28 +0000 | [diff] [blame] | 844 | - IDLE didn't start correctly when Python was installed in "Program Files" on |
| 845 | W2K and XP. Python Bugs 780451, 784183 |
| 846 | |
| 847 | - config-main.def documentation incorrectly referred to idle- instead of |
| 848 | config- filenames. SF 782759 Also added note about .idlerc location. |
| 849 | |
| 850 | |
Kurt B. Kaiser | 220fecf | 2003-07-27 03:24:19 +0000 | [diff] [blame] | 851 | What's New in IDLE 1.0? |
Kurt B. Kaiser | 4d5bc60 | 2004-06-06 01:29:22 +0000 | [diff] [blame] | 852 | ======================= |
Kurt B. Kaiser | 220fecf | 2003-07-27 03:24:19 +0000 | [diff] [blame] | 853 | *Release date: 29-Jul-2003* |
| 854 | |
Kurt B. Kaiser | 6145a62 | 2003-07-23 15:42:14 +0000 | [diff] [blame] | 855 | - Calltip error when docstring was None Python Bug 775541 |
| 856 | |
Kurt B. Kaiser | cca9122 | 2003-07-16 03:10:43 +0000 | [diff] [blame] | 857 | - Updated extend.txt, help.txt, and config-extensions.def to correctly |
| 858 | reflect the current status of the configuration system. Python Bug 768469 |
| 859 | |
| 860 | - Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels) |
| 861 | |
| 862 | - Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance |
| 863 | Python Patch 768187 |
| 864 | |
| 865 | - Break or continue statements outside a loop were causing IDLE crash |
| 866 | Python Bug 767794 |
| 867 | |
| 868 | - Convert Unicode strings from readline to IOBinding.encoding. Also set |
| 869 | sys.std{in|out|err}.encoding, for both the local and the subprocess case. |
| 870 | SF IDLEfork patch 682347. |
| 871 | |
Kurt B. Kaiser | c714d45 | 2003-11-24 03:23:16 +0000 | [diff] [blame] | 872 | - Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS |
| 873 | file Latin-1. |
| 874 | |
| 875 | - Updated the About dialog to reflect re-integration into Python. Provide |
| 876 | buttons to display Python's NEWS, License, and Credits, plus additional |
| 877 | buttons for IDLE's README and NEWS. |
| 878 | |
| 879 | - TextViewer() now has a third parameter which allows inserting text into the |
| 880 | viewer instead of reading from a file. |
| 881 | |
Kurt B. Kaiser | 76bcb5c | 2003-06-14 02:51:06 +0000 | [diff] [blame] | 882 | - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of |
| 883 | IDLEfork modified to install in the Python environment. The code in the |
| 884 | interrupt module has been moved to thread.interrupt_main(). ) |
| 885 | |
| 886 | - Printing the Shell window was failing if it was not saved first SF 748975 |
| 887 | |
| 888 | - When using the Search in Files dialog, if the user had a selection |
| 889 | highlighted in his Editor window, insert it into the dialog search field. |
| 890 | |
| 891 | - The Python Shell entry was disappearing from the Windows menu. |
| 892 | |
| 893 | - Update the Windows file list when a file name change occurs |
| 894 | |
| 895 | - Change to File / Open Module: always pop up the dialog, using the current |
| 896 | selection as the default value. This is easier to use habitually. |
| 897 | |
| 898 | - Avoided a problem with starting the subprocess when 'localhost' doesn't |
| 899 | resolve to the user's loopback interface. SF 747772 |
| 900 | |
| 901 | - Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also |
| 902 | improved notification of Tabnanny Token Error. |
| 903 | |
| 904 | - File / New will by default save in the directory of the Edit window from |
| 905 | which it was initiated. SF 748973 Guido van Rossum patch. |
| 906 | |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 907 | |
Kurt B. Kaiser | 9a90e70 | 2003-04-25 17:48:08 +0000 | [diff] [blame] | 908 | What's New in IDLEfork 0.9b1? |
Kurt B. Kaiser | 4d5bc60 | 2004-06-06 01:29:22 +0000 | [diff] [blame] | 909 | ============================= |
Kurt B. Kaiser | 76bcb5c | 2003-06-14 02:51:06 +0000 | [diff] [blame] | 910 | *Release date: 02-Jun-2003* |
Kurt B. Kaiser | a00050f | 2003-05-08 20:26:55 +0000 | [diff] [blame] | 911 | |
Kurt B. Kaiser | 5ddef75 | 2003-06-01 01:11:14 +0000 | [diff] [blame] | 912 | - The current working directory of the execution environment (and shell |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 913 | following completion of execution) is now that of the module being run. |
Kurt B. Kaiser | 5ddef75 | 2003-06-01 01:11:14 +0000 | [diff] [blame] | 914 | |
| 915 | - Added the delete-exitfunc option to config-main.def. (This option is not |
| 916 | included in the Options dialog.) Setting this to True (the default) will |
| 917 | cause IDLE to not run sys.exitfunc/atexit when the subprocess exits. |
| 918 | |
| 919 | - IDLE now preserves the line ending codes when editing a file produced on |
| 920 | a different platform. SF 661759, SF 538584 |
| 921 | |
| 922 | - Reduced default editor font size to 10 point and increased window height |
| 923 | to provide a better initial impression on Windows. |
| 924 | |
| 925 | - Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting |
| 926 | the default font when first installed on Windows. SF 661676 |
| 927 | |
| 928 | - Added Autosave feature: when user runs code from edit window, if the file |
| 929 | has been modified IDLE will silently save it if Autosave is enabled. The |
| 930 | option is set in the Options dialog, and the default is to prompt the |
| 931 | user to save the file. SF 661318 Bruce Sherwood patch. |
| 932 | |
| 933 | - Improved the RESTART annotation in the shell window when the user restarts |
| 934 | the shell while it is generating output. Also improved annotation when user |
| 935 | repeatedly hammers the Ctrl-F6 restart. |
| 936 | |
Kurt B. Kaiser | a80d57c | 2003-05-17 03:15:48 +0000 | [diff] [blame] | 937 | - Allow IDLE to run when not installed and cwd is not the IDLE directory |
| 938 | SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael |
| 939 | |
| 940 | - When a module is run from an EditorWindow: if its directory is not in |
| 941 | sys.path, prepend it. This allows the module to import other modules in |
| 942 | the same directory. Do the same for a script run from the command line. |
| 943 | |
Kurt B. Kaiser | 5ddef75 | 2003-06-01 01:11:14 +0000 | [diff] [blame] | 944 | - Correctly restart the subprocess if it is running user code and the user |
| 945 | attempts to run some other module or restarts the shell. Do the same if |
| 946 | the link is broken and it is possible to restart the subprocess and re- |
| 947 | connect to the GUI. SF RFE 661321. |
Kurt B. Kaiser | 7f38ec0 | 2003-05-15 03:19:42 +0000 | [diff] [blame] | 948 | |
| 949 | - Improved exception reporting when running commands or scripts from the |
| 950 | command line. |
| 951 | |
Kurt B. Kaiser | a80d57c | 2003-05-17 03:15:48 +0000 | [diff] [blame] | 952 | - Added a -n command line switch to start IDLE without the subprocess. |
| 953 | Removed the Shell menu when running in that mode. Updated help messages. |
| 954 | |
Kurt B. Kaiser | 7f38ec0 | 2003-05-15 03:19:42 +0000 | [diff] [blame] | 955 | - Added a comment to the shell startup header to indicate when IDLE is not |
Kurt B. Kaiser | a80d57c | 2003-05-17 03:15:48 +0000 | [diff] [blame] | 956 | using the subprocess. |
Kurt B. Kaiser | 7f38ec0 | 2003-05-15 03:19:42 +0000 | [diff] [blame] | 957 | |
| 958 | - Restore the ability to run without the subprocess. This can be important for |
| 959 | some platforms or configurations. (Running without the subprocess allows the |
| 960 | debugger to trace through parts of IDLE itself, which may or may not be |
| 961 | desirable, depending on your point of view. In addition, the traditional |
Kurt B. Kaiser | 5ddef75 | 2003-06-01 01:11:14 +0000 | [diff] [blame] | 962 | reload/import tricks must be use if user source code is changed.) This is |
| 963 | helpful for developing IDLE using IDLE, because one instance can be used to |
| 964 | edit the code and a separate instance run to test changes. (Multiple |
| 965 | concurrent IDLE instances with subprocesses is a future feature) |
Kurt B. Kaiser | 7f38ec0 | 2003-05-15 03:19:42 +0000 | [diff] [blame] | 966 | |
Kurt B. Kaiser | 73414a2 | 2003-05-12 03:04:59 +0000 | [diff] [blame] | 967 | - Improve the error message a user gets when saving a file with non-ASCII |
| 968 | characters and no source encoding is specified. Done by adding a dialog |
| 969 | 'EncodingMessage', which contains the line to add in a fixed-font entry |
| 970 | widget, and which has a button to add that line to the file automatically. |
| 971 | Also, add a configuration option 'EditorWindow/encoding', which has three |
| 972 | possible values: none, utf-8, and locale. None is the default: IDLE will show |
| 973 | this dialog when non-ASCII characters are encountered. utf-8 means that files |
| 974 | with non-ASCII characters are saved as utf-8-with-bom. locale means that |
| 975 | files are saved in the locale's encoding; the dialog is only displayed if the |
| 976 | source contains characters outside the locale's charset. SF 710733 - Loewis |
| 977 | |
Kurt B. Kaiser | a00050f | 2003-05-08 20:26:55 +0000 | [diff] [blame] | 978 | - Improved I/O response by tweaking the wait parameter in various |
| 979 | calls to signal.signal(). |
| 980 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 981 | - Implemented a threaded subprocess which allows interrupting a pass |
Kurt B. Kaiser | 73414a2 | 2003-05-12 03:04:59 +0000 | [diff] [blame] | 982 | loop in user code using the 'interrupt' extension. User code runs |
Kurt B. Kaiser | 5ddef75 | 2003-06-01 01:11:14 +0000 | [diff] [blame] | 983 | in MainThread, while the RPCServer is handled by SockThread. This is |
| 984 | necessary because Windows doesn't support signals. |
Kurt B. Kaiser | 003091c | 2003-02-17 18:57:16 +0000 | [diff] [blame] | 985 | |
Kurt B. Kaiser | 94afd30 | 2003-03-12 20:52:00 +0000 | [diff] [blame] | 986 | - Implemented the 'interrupt' extension module, which allows a subthread |
| 987 | to raise a KeyboardInterrupt in the main thread. |
| 988 | |
| 989 | - Attempting to save the shell raised an error related to saving |
| 990 | breakpoints, which are not implemented in the shell |
| 991 | |
| 992 | - Provide a correct message when 'exit' or 'quit' are entered at the |
| 993 | IDLE command prompt SF 695861 |
| 994 | |
| 995 | - Eliminate extra blank line in shell output caused by not flushing |
| 996 | stdout when user code ends with an unterminated print. SF 695861 |
| 997 | |
| 998 | - Moved responsibility for exception formatting (i.e. pruning IDLE internal |
| 999 | calls) out of rpc.py into the client and server. |
| 1000 | |
Kurt B. Kaiser | 003091c | 2003-02-17 18:57:16 +0000 | [diff] [blame] | 1001 | - Exit IDLE cleanly even when doing subprocess I/O |
| 1002 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1003 | - Handle subprocess interrupt with an RPC message. |
Kurt B. Kaiser | 003091c | 2003-02-17 18:57:16 +0000 | [diff] [blame] | 1004 | |
| 1005 | - Restart the subprocess if it terminates itself. (VPython programs do that) |
| 1006 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1007 | - Support subclassing of exceptions, including in the shell, by moving the |
Kurt B. Kaiser | 003091c | 2003-02-17 18:57:16 +0000 | [diff] [blame] | 1008 | exception formatting to the subprocess. |
| 1009 | |
Kurt B. Kaiser | 003091c | 2003-02-17 18:57:16 +0000 | [diff] [blame] | 1010 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1011 | What's New in IDLEfork 0.9 Alpha 2? |
| 1012 | =================================== |
Kurt B. Kaiser | 7e17289 | 2003-01-27 02:40:20 +0000 | [diff] [blame] | 1013 | *Release date: 27-Jan-2003* |
| 1014 | |
| 1015 | - Updated INSTALL.txt to claify use of the python2 rpm. |
| 1016 | |
| 1017 | - Improved formatting in IDLE Help. |
| 1018 | |
| 1019 | - Run menu: Replace "Run Script" with "Run Module". |
| 1020 | |
| 1021 | - Code encountering an unhandled exception under the debugger now shows |
| 1022 | the correct traceback, with IDLE internal levels pruned out. |
| 1023 | |
| 1024 | - If an exception occurs entirely in IDLE, don't prune the IDLE internal |
| 1025 | modules from the traceback displayed. |
| 1026 | |
| 1027 | - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom. |
| 1028 | |
| 1029 | - IDLE icons will now install correctly even when setup.py is run from the |
| 1030 | build directory |
| 1031 | |
| 1032 | - Class Browser now compatible with Python2.3 version of pyclbr.py |
Kurt B. Kaiser | 2cb5402 | 2002-12-31 18:12:04 +0000 | [diff] [blame] | 1033 | |
Kurt B. Kaiser | 5ec186b | 2003-01-17 04:04:06 +0000 | [diff] [blame] | 1034 | - Left cursor move in presence of selected text now moves from left end |
| 1035 | of the selection. |
| 1036 | |
| 1037 | - Add Meta keybindings to "IDLE Classic Windows" to handle reversed |
| 1038 | Alt/Meta on some Linux distros. |
| 1039 | |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 1040 | - Change default: IDLE now starts with Python Shell. |
| 1041 | |
| 1042 | - Removed the File Path from the Additional Help Sources scrolled list. |
| 1043 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1044 | - Add capability to access Additional Help Sources on the web if the |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 1045 | Help File Path begins with //http or www. (Otherwise local path is |
| 1046 | validated, as before.) |
| 1047 | |
| 1048 | - Additional Help Sources were not being posted on the Help menu in the |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1049 | order entered. Implement sorting the list by [HelpFiles] 'option' |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 1050 | number. |
| 1051 | |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1052 | - Add Browse button to New Help Source dialog. Arrange to start in |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 1053 | Python/Doc if platform is Windows, otherwise start in current directory. |
| 1054 | |
| 1055 | - Put the Additional Help Sources directly on the Help menu instead of in |
| 1056 | an Extra Help cascade menu. Rearrange the Help menu so the Additional |
| 1057 | Help Sources come last. Update help.txt appropriately. |
| 1058 | |
| 1059 | - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py |
| 1060 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1061 | - Uniform capitalization in General tab of ConfigDialog, update the doc string. |
| 1062 | |
| 1063 | - Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly |
| 1064 | deleting Additional Help Sources from the user's config file. |
| 1065 | |
| 1066 | - Make configHelpSourceEdit OK button the default and bind <Return> |
| 1067 | |
| 1068 | - Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached |
| 1069 | to parents. |
| 1070 | |
| 1071 | - Use os.startfile() to open both Additional Help and Python Help on the |
| 1072 | Windows platform. The application associated with the file type will act as |
| 1073 | the viewer. Windows help files (.chm) are now supported via the |
| 1074 | Settings/General/Additional Help facility. |
| 1075 | |
| 1076 | - If Python Help files are installed locally on Linux, use them instead of |
| 1077 | accessing python.org. |
| 1078 | |
| 1079 | - Make the methods for finding the Python help docs more robust, and make |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1080 | them work in the installed configuration, also. |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1081 | |
| 1082 | - On the Save Before Run dialog, make the OK button the default. One |
| 1083 | less mouse action! |
| 1084 | |
| 1085 | - Add a method: EditorWindow.get_geometry() for future use in implementing |
| 1086 | window location persistence. |
| 1087 | |
| 1088 | - Removed the "Help/Advice" menu entry. Thanks, David! We'll remember! |
| 1089 | |
| 1090 | - Change the "Classic Windows" theme's paste key to be <ctrl-v>. |
| 1091 | |
| 1092 | - Rearrange the Shell menu to put Stack Viewer entries adjacent. |
| 1093 | |
| 1094 | - Add the ability to restart the subprocess interpreter from the shell window; |
Kurt B. Kaiser | 7e17289 | 2003-01-27 02:40:20 +0000 | [diff] [blame] | 1095 | add an associated menu entry "Shell/Restart" with binding Control-F6. Update |
| 1096 | IDLE help. |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1097 | |
| 1098 | - Upon a restart, annotate the shell window with a "restart boundary". Add a |
Kurt B. Kaiser | 7e17289 | 2003-01-27 02:40:20 +0000 | [diff] [blame] | 1099 | shell window menu "Shell/View Restart" with binding F6 to jump to the most |
| 1100 | recent restart boundary. |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1101 | |
Kurt B. Kaiser | 7e17289 | 2003-01-27 02:40:20 +0000 | [diff] [blame] | 1102 | - Add Shell menu to Python Shell; change "Settings" to "Options". |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1103 | |
| 1104 | - Remove incorrect comment in setup.py: IDLEfork is now installed as a package. |
| 1105 | |
| 1106 | - Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration. |
| 1107 | |
| 1108 | - In installer text, fix reference to Visual Python, should be VPython. |
| 1109 | Properly credit David Scherer. |
| 1110 | |
| 1111 | - Modified idle, idle.py, idle.pyw to improve exception handling. |
| 1112 | |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 1113 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1114 | What's New in IDLEfork 0.9 Alpha 1? |
| 1115 | =================================== |
Tim Peters | 16e3cf5 | 2004-10-24 23:45:42 +0000 | [diff] [blame] | 1116 | *Release date: 31-Dec-2002* |
Steven M. Gava | 88ff736 | 2001-07-21 09:50:55 +0000 | [diff] [blame] | 1117 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1118 | - First release of major new functionality. For further details refer to |
| 1119 | Idle-dev and/or the Sourceforge CVS. |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 1120 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1121 | - Adapted to the Mac platform. |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 1122 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1123 | - Overhauled the IDLE startup options and revised the idle -h help message, |
| 1124 | which provides details of command line usage. |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 1125 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1126 | - Multiple bug fixes and usability enhancements. |
| 1127 | |
| 1128 | - Introduced the new RPC implementation, which includes a debugger. The output |
| 1129 | of user code is to the shell, and the shell may be used to inspect the |
| 1130 | environment after the run has finished. (In version 0.8.1 the shell |
| 1131 | environment was separate from the environment of the user code.) |
| 1132 | |
| 1133 | - Introduced the configuration GUI and a new About dialog. |
| 1134 | |
| 1135 | - Removed David Scherer's Remote Procedure Call code and replaced with Guido |
| 1136 | van Rossum's. GvR code has support for the IDLE debugger and uses the shell |
| 1137 | to inspect the environment of code Run from an Edit window. Files removed: |
| 1138 | ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py |
Steven M. Gava | d39993e | 2001-07-20 01:36:49 +0000 | [diff] [blame] | 1139 | |
Kurt B. Kaiser | a7b804f | 2003-01-10 21:27:23 +0000 | [diff] [blame] | 1140 | -------------------------------------------------------------------- |
| 1141 | Refer to HISTORY.txt for additional information on earlier releases. |
| 1142 | -------------------------------------------------------------------- |
David Scherer | 7aced17 | 2000-08-15 01:13:23 +0000 | [diff] [blame] | 1143 | |
| 1144 | |
David Scherer | 7aced17 | 2000-08-15 01:13:23 +0000 | [diff] [blame] | 1145 | |
| 1146 | |
David Scherer | 7aced17 | 2000-08-15 01:13:23 +0000 | [diff] [blame] | 1147 | |