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