NEWS.txt 44 KB

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