blob: 273f7c49e5f4848c79d5f51b33a00ca5c35df73c [file] [log] [blame]
Terry Jan Reedy2c5c0a32018-07-20 02:14:56 -04001What's New in IDLE 3.8.0 (since 3.7.0)
2Released on 2019-10-20?
Terry Jan Reedy05e80672018-02-04 19:07:16 -05003======================================
terryjreedy503bc632017-06-10 20:46:08 -04004
terryjreedy1ccbad92017-07-05 19:36:48 -04005
Terry Jan Reedy5a606672018-09-24 19:15:40 -04006bpo-33975: Avoid small type when running htests.
7Since part of the purpose of human-viewed tests is to determine that
8widgets look right, it is important that they look the same for testing
9as when running IDLE.
10
Terry Jan Reedy2c5c0a32018-07-20 02:14:56 -040011bpo-33905: Add test for idlelib.stackview.StackBrowser.
12
13bpo-33924: Change mainmenu.menudefs key 'windows' to 'window'.
14Every other menudef key is the lowercase version of the
15corresponding main menu entry (in this case, 'Window').
16
17bpo-33906: Rename idlelib.windows as window
18Match Window on the main menu and remove last plural module name.
19Change imports, test, and attribute references to match new name.
20
21bpo-33917: Fix and document idlelib/idle_test/template.py.
22The revised file compiles, runs, and tests OK. idle_test/README.txt
23explains how to use it to create new IDLE test files.
24
25bpo-33904: In rstrip module, rename class RstripExtension as Rstrip.
26
27bpo-33907: For consistency and clarity, rename calltip objects.
28Module calltips and its class CallTips are now calltip and Calltip.
29In module calltip_w, class CallTip is now CalltipWindow.
30
31bpo-33855: Minimally test all IDLE modules.
32Standardize the test file format. Add missing test files that import
33the tested module and perform at least one test. Check and record the
34coverage of each test.
35
36bpo-33856: Add 'help' to Shell's initial welcome message.
37
38
39What's New in IDLE 3.7.0 (since 3.6.0)
40Released on 2018-06-27
41======================================
42
Terry Jan Reedy800415e2018-06-11 14:14:32 -040043bpo-33656: On Windows, add API call saying that tk scales for DPI.
44On Windows 8.1+ or 10, with DPI compatibility properties of the Python
45binary unchanged, and a monitor resolution greater than 96 DPI, this
Terry Jan Reedy4b704f22018-06-11 16:53:41 -040046should make text and lines sharper and some colors brighter.
47On other systems, it should have no effect. If you have a custom theme,
48you may want to adjust a color or two. If perchance it make text worse
49on your monitor, you can disable the ctypes.OleDLL call near the top of
50pyshell.py and report the problem on python-list or idle-dev@python.org.
Terry Jan Reedy800415e2018-06-11 14:14:32 -040051
Terry Jan Reedyb1f69022018-06-08 02:28:45 -040052bpo-33768: Clicking on a context line moves that line to the top
53of the editor window.
54
55bpo-33763: Replace the code context label widget with a text widget.
56
57bpo-33664: Scroll IDLE editor text by lines.
58(Previously, the mouse wheel and scrollbar slider moved text by a fixed
59number of pixels, resulting in partial lines at the top of the editor
60box.) This change also applies to the shell and grep output windows,
61but currently not to read-only text views.
62
63bpo-33679: Enable theme-specific color configuration for Code Context.
64(Previously, there was one code context foreground and background font
65color setting, default or custom, on the extensions tab, that applied
66to all themes.) For built-in themes, the foreground is the same as
67normal text and the background is a contrasting gray. Context colors for
68custom themes are set on the Hightlights tab along with other colors.
69When one starts IDLE from a console and loads a custom theme without
70definitions for 'context', one will see a warning message on the
71console.
72
73bpo-33642: Display up to maxlines non-blank lines for Code Context.
74If there is no current context, show a single blank line. (Previously,
75the Code Contex had numlines lines, usually with some blank.) The use
76of a new option, 'maxlines' (default 15), avoids possible interference
77with user settings of the old option, 'numlines' (default 3).
78
Cheryl Sabella85060162018-05-23 22:18:15 -040079bpo-33628: Cleanup codecontext.py and its test.
80
Terry Jan Reedy6b0d09b2018-05-19 21:38:46 -040081bpo-32831: Add docstrings and tests for codecontext.py.
82Coverage is 100%. Patch by Cheryl Sabella.
83
84bpo-33564: Code context now recognizes async as a block opener.
85
Terry Jan Reedy038b21f2018-05-15 17:41:57 -040086bpo-21474: Update word/identifier definition from ascii to unicode.
87In text and entry boxes, this affects selection by double-click,
88movement left/right by control-left/right, and deletion left/right
89by control-BACKSPACE/DEL.
90
91bpo-33204: Consistently color invalid string prefixes.
92A 'u' string prefix cannot be paired with either 'r' or 'f'.
93IDLE now consistently colors as much of the prefix, starting at the
94right, as is valid. Revise and extend colorizer test.
95
96bpo-32984: Set __file__ while running a startup file.
97Like Python, IDLE optionally runs 1 startup file in the Shell window
98before presenting the first interactive input prompt. For IDLE,
99option -s runs a file named in environmental variable IDLESTARTUP or
100PYTHONSTARTUP; -r file runs file. Python sets __file__ to the startup
101file name before running the file and unsets it before the first
102prompt. IDLE now does the same when run normally, without the -n
103option.
104
105bpo-32940: Replace StringTranslatePseudoMapping with faster code.
106
Terry Jan Reedy0954c9e2018-02-27 18:36:21 -0500107bpo-32916: Change 'str' to 'code' in idlelib.pyparse and users.
108
109bpo-32905: Remove unused code in pyparse module.
110
111bpo-32874: IDLE - add pyparse tests with 97% coverage.
112
113bpo-32837: IDLE - require encoding argument for textview.view_file.
114Using the system and place-dependent default encoding for open()
115is a bad idea for IDLE's system and location-independent files.
116
117bpo-32826: Add "encoding=utf-8" to open() in IDLE's test_help_about.
118GUI test test_file_buttons() only looks at initial ascii-only lines,
119but failed on systems where open() defaults to 'ascii' because
120readline() internally reads and decodes far enough ahead to encounter
121a non-ascii character in CREDITS.txt.
122
Terry Jan Reedy05e80672018-02-04 19:07:16 -0500123bpo-32765: Update configdialog General tab create page docstring.
124Add new widgets to the widget list.
125
Terry Jan Reedy2c0c68d2017-12-04 17:04:15 -0500126bpo-32207: Improve tk event exception tracebacks in IDLE.
127When tk event handling is driven by IDLE's run loop, a confusing
128and distracting queue.EMPTY traceback context is no longer added
129to tk event exception tracebacks. The traceback is now the same
130as when event handling is driven by user code. Patch based on
131a suggestion by Serhiy Storchaka.
132
Terry Jan Reedy21255fc2017-12-04 14:48:25 -0500133bpo-32164: Delete unused file idlelib/tabbedpages.py.
134Use of TabbedPageSet in configdialog was replaced by ttk.Notebook.
135
136bpo-32100: Fix old and new bugs in pathbrowser; improve tests.
137Patch mostly by Cheryl Sabella.
138
139bpo-31860: The font sample in the settings dialog is now editable.
140Edits persist while IDLE remains open.
141Patch by Serhiy Storchake and Terry Jan Reedy.
142
Ville Skyttä61f82e02018-04-20 23:08:45 +0300143bpo-31858: Restrict shell prompt manipulation to the shell.
Terry Jan Reedy21255fc2017-12-04 14:48:25 -0500144Editor and output windows only see an empty last prompt line. This
145simplifies the code and fixes a minor bug when newline is inserted.
146Sys.ps1, if present, is read on Shell start-up, but is not set or changed.
147Patch by Terry Jan Reedy.
148
Terry Jan Reedy27288de2017-10-17 19:02:49 -0400149bpo-28603: Fix a TypeError that caused a shell restart when printing
150a traceback that includes an exception that is unhashable.
151Patch by Zane Bitter.
152
153bpo-13802: Use non-Latin characters in the Font settings sample.
154Even if one selects a font that defines a limited subset of the unicode
155Basic Multilingual Plane, tcl/tk will use other fonts that define a
156character. The expanded example give users of non-Latin characters
157a better idea of what they might see in the shell and editors.
158
159To make room for the expanded sample, frames on the Font tab are
160re-arranged. The Font/Tabs help explains a bit about the additions.
161Patch by Terry Jan Reedy
162
163bpo-31460: Simplify the API of IDLE's Module Browser.
164Passing a widget instead of an flist with a root widget opens the
165option of creating a browser frame that is only part of a window.
166Passing a full file name instead of pieces assumed to come from a
167.py file opens the possibility of browsing python files that do not
168end in .py.
169
170bpo-31649: Make _htest and _utest parameters keyword-only.
171These are used to adjust code for human and unit tests.
172
173bpo-31459: Rename module browser from Class Browser to Module Browser.
174The original module-level class and method browser became a module
175browser, with the addition of module-level functions, years ago.
176Nested classes and functions were added yesterday. For back-
177compatibility, the virtual event <<open-class-browser>>, which
178appears on the Keys tab of the Settings dialog, is not changed.
179Patch by Cheryl Sabella.
180
181bpo-1612262: Module browser now shows nested classes and functions.
182Original patches for code and tests by Guilherme Polo and
183Cheryl Sabella, respectively. Revisions by Terry Jan Reedy.
184
185bpo-31500: Tk's default fonts now are scaled on HiDPI displays.
186This affects all dialogs. Patch by Serhiy Storchaka.
187
Terry Jan Reedy55679e02017-09-17 20:14:21 -0400188bpo-31493: Fix code context update and font update timers.
189Canceling timers prevents a warning message when test_idle completes.
190
191bpo-31488: Update non-key options in former extension classes.
192When applying configdialog changes, call .reload for each feature class.
193Change ParenMatch so updated options affect existing instances attached
194to existing editor windows.
195
196bpo-31477: Improve rstrip entry in IDLE doc.
197Strip Trailing Whitespace strips more than blank spaces.
198Multiline string literals are not skipped.
199
200bpo-31480: fix tests to pass with zzdummy extension disabled. (#3590)
201To see the example in action, enable it on options extensions tab.
202
203bpo-31421: Document how IDLE runs tkinter programs.
204IDLE calls tcl/tk update in the background in order to make live
205interaction and experimentatin with tkinter applications much easier.
206
Terry Jan Reedyf6586412017-12-10 04:02:53 -0500207bpo-31414: Fix tk entry box tests by deleting first.
Terry Jan Reedy8239fd72017-09-11 16:43:26 -0400208Adding to an int entry is not the same as deleting and inserting
209because int('') will fail. Patch by Terry Jan Reedy.
210
211bpo-27099: Convert IDLE's built-in 'extensions' to regular features.
212 About 10 IDLE features were implemented as supposedly optional
213extensions. Their different behavior could be confusing or worse for
214users and not good for maintenance. Hence the conversion.
215 The main difference for users is that user configurable key bindings
216for builtin features are now handled uniformly. Now, editing a binding
217in a keyset only affects its value in the keyset. All bindings are
218defined together in the system-specific default keysets in config-
219extensions.def. All custom keysets are saved as a whole in config-
220extension.cfg. All take effect as soon as one clicks Apply or Ok.
221 The affected events are '<<force-open-completions>>',
222'<<expand-word>>', '<<force-open-calltip>>', '<<flash-paren>>',
223'<<format-paragraph>>', '<<run-module>>', '<<check-module>>', and
224'<<zoom-height>>'. Any (global) customizations made before 3.6.3 will
225not affect their keyset-specific customization after 3.6.3. and vice
226versa.
luzpaza5293b42017-11-05 07:37:50 -0600227 Initial patch by Charles Wohlganger, revised by Terry Jan Reedy.
Terry Jan Reedy8239fd72017-09-11 16:43:26 -0400228
229bpo-31051: Rearrange condigdialog General tab.
230Sort non-Help options into Window (Shell+Editor) and Editor (only).
231Leave room for the addition of new options.
232Patch by Terry Jan Reedy.
233
234bpo-30617: Add docstrings and tests for outwin subclass of editor.
235Move some data and functions from the class to module level.
236Patch by Cheryl Sabella.
237
238bpo-31287: Do not modify tkinter.messagebox in test_configdialog.
239Instead, mask it with an instance mock that can be deleted.
240Patch by Terry Jan Reedy.
241
242bpo-30781: Use ttk widgets in ConfigDialog pages.
243These should especially look better on MacOSX.
244Patches by Terry Jan Reedy and Cheryl Sabella.
245
246bpo-31206: Factor HighPage(Frame) class from ConfigDialog.
247Patch by Cheryl Sabella.
248
249bp0-31001: Add tests for configdialog highlight tab.
250Patch by Cheryl Sabella.
251
Terry Jan Reedy7f066842017-08-15 19:15:04 -0400252bpo-31205: Factor KeysPage(Frame) class from ConfigDialog.
253The slightly modified tests continue to pass.
254Patch by Cheryl Sabella.
255
256bpo-31002: Add tests for configdialog keys tab.
257Patch by Cheryl Sabella.
258
259bpo-19903: Change calltipes to use inspect.signature.
260Idlelib.calltips.get_argspec now uses inspect.signature instead of
261inspect.getfullargspec, like help() does. This improves the signature
262in the call tip in a few different cases, including builtins converted
263to provide a signature. A message is added if the object is not
264callable, has an invalid signature, or if it has positional-only
265parameters. Patch by Louie Lu.
266
267bop-31083: Add an outline of a TabPage class in configdialog.
268Add template as comment. Update existing classes to match outline.
269Initial patch by Cheryl Sabella.
270
271bpo-31050: Factor GenPage(Frame) class from ConfigDialog.
272The slightly modified tests for the General tab continue to pass.
273Patch by Cheryl Sabella.
274
275bpo-31004: Factor FontPage(Frame) class from ConfigDialog.
276The slightly modified tests continue to pass. The General test
277broken by the switch to ttk.Notebook is fixed.
278Patch mostly by Cheryl Sabella.
279
Terry Jan Reedyc3aa47f2017-07-30 06:25:22 -0400280bpo-30781: IDLE - Use ttk Notebook in ConfigDialog.
Terry Jan Reedy8239fd72017-09-11 16:43:26 -0400281This improves navigation by tabbing.
Terry Jan Reedyc3aa47f2017-07-30 06:25:22 -0400282Patch by Terry Jan Reedy.
283
284bpo-31060: IDLE - Finish rearranging methods of ConfigDialog.
285Grouping methods pertaining to each tab and the buttons will aid
286writing tests and improving the tabs and will enable splitting the
287groups into classes.
288Patch by Terry Jan Reedy.
289
290bpo-30853: IDLE -- Factor a VarTrace class out of ConfigDialog.
291Instance tracers manages pairs consisting of a tk variable and a
292callback function. When tracing is turned on, setting the variable
293calls the function. Test coverage for the new class is 100%.
294Patch by Terry Jan Reedy.
295
296bpo-31003: IDLE: Add more tests for General tab.
297Patch by Terry Jan Reedy.
298
299bpo-30993: IDLE - Improve configdialog font page and tests.
300*In configdialog: Document causal pathways in create_font_tab
301docstring. Simplify some attribute names. Move set_samples calls to
302var_changed_font (idea from Cheryl Sabella). Move related functions to
303positions after the create widgets function.
304* In test_configdialog: Fix test_font_set so not order dependent. Fix
305renamed test_indent_scale so it tests the widget. Adjust tests for
306movement of set_samples call. Add tests for load functions. Put all
307font tests in one class and tab indent tests in another. Except for
308two lines, these tests completely cover the related functions.
309Patch by Terry Jan Reedy.
310
311bpo-30981: IDLE -- Add more configdialog font page tests.
312
313bpo-28523: IDLE: replace 'colour' with 'color' in configdialog.
314
315bpo-30917: Add tests for idlelib.config.IdleConf.
316Increase coverage from 46% to 96%.
317Patch by Louie Lu.
318
terryjreedy0d0a32f2017-07-14 00:14:10 -0400319bpo-30913: Document ConfigDialog tk Vars, methods, and widgets in docstrings
320This will facilitate improving the dialog and splitting up the class.
321Original patch by Cheryl Sabella.
322
323bpo-30899: Add tests for ConfigParser subclasses in config.
324Coverage is 100% for those classes and ConfigChanges.
325Patch by Louie Lu.
326
Terry Jan Reedyc3aa47f2017-07-30 06:25:22 -0400327bpo-30881: Add docstrings to browser.py.
terryjreedy0d0a32f2017-07-14 00:14:10 -0400328Patch by Cheryl Sabella.
329
330bpo-30851: Remove unused tk variables in configdialog.
331One is a duplicate, one is set but cannot be altered by users.
332Patch by Cheryl Sabella.
333
334bpo-30870: Select font option with Up and Down keys, as well as with mouse.
335Added test increases configdialog coverage to 60%
336Patches mostly by Louie Lu.
337
338bpo-8231: Call config.IdleConf.GetUserCfgDir only once per process.
339
340bpo-30779: Factor ConfigChanges class from configdialog, put in config; test.
341* In config, put dump test code in a function; run it and unittest in
342 'if __name__ == '__main__'.
343* Add class config.ConfigChanges based on changes_class_v4.py on bpo issue.
344* Add class test_config.ChangesTest, partly using configdialog_tests_v1.py.
345* Revise configdialog to use ConfigChanges; see tracker msg297804.
346* Revise test_configdialog to match configdialog changes.
347* Remove configdialog functions unused or moved to ConfigChanges.
348Cheryl Sabella contributed parts of the patch.
349
terryjreedy1ccbad92017-07-05 19:36:48 -0400350bpo-30777: Configdialog - add docstrings and improve comments.
351Patch by Cheryl Sabella.
352
353bpo-30495: Improve textview with docstrings, PEP8 names, and more tests.
354Split TextViewer class into ViewWindow, ViewFrame, and TextFrame classes
355so that instances of the latter two can be placed with other widgets
356within a multiframe window.
357Patches by Cheryl Sabella and Terry Jan Reedy.
358
Terry Jan Reedy7f066842017-08-15 19:15:04 -0400359bpo-30723: Make several improvements to parenmatch.
terryjreedy1ccbad92017-07-05 19:36:48 -0400360* Add 'parens' style to highlight both opener and closer.
361* Make 'default' style, which is not default, a synonym for 'opener'.
362* Make time-delay work the same with all styles.
363* Add help for config dialog extensions tab, including parenmatch.
Terry Jan Reedyc3aa47f2017-07-30 06:25:22 -0400364* Add new tests.
terryjreedy1ccbad92017-07-05 19:36:48 -0400365Original patch by Charles Wohlganger. Revisions by Terry Jan Reedy
366
367bpo-30674: Grep -- Add docstrings. Patch by Cheryl Sabella.
368
369bpo-21519: IDLE's basic custom key entry dialog now detects
370duplicates properly. Original patch by Saimadhav Heblikar.
371
372bpo-29910: IDLE no longer deletes a character after commenting out a
373region by a key shortcut. Add "return 'break'" for this and other
374potential conflicts between IDLE and default key bindings.
375Patch by Serhiy Storchaka.
376
377bpo-30728: Modernize idlelib.configdialog:
378* replace import * with specific imports;
379* lowercase method and attribute lines.
380Patch by Cheryl Sabella.
381
382bpo-6739: Verify user-entered key sequences by trying to bind them
383with to a tk widget. Add tests for all 3 validation functions.
384Original patch by G Polo. Tests added by Cheryl Sabella.
385Code revised and more tests added by Terry Jan Reedy
386
387bpo-24813: Add icon to help_about and make other changes.
388
terryjreedyfaa63d12017-06-16 01:54:57 -0400389bpo-15786: Fix several problems with IDLE's autocompletion box.
390The following should now work: clicking on selection box items;
391using the scrollbar; selecting an item by hitting Return.
392Hangs on MacOSX should no longer happen. Patch by Louie Lu.
393
394bpo-25514: Add doc subsubsection about IDLE failure to start.
395Popup no-connection message directs users to this section.
396
397bpo-30642: Fix reference leaks in IDLE tests.
398Patches by Louie Lu and Terry Jan Reedy.
399
400bpo-30495: Add docstrings for textview.py and use PEP8 names.
401Patches by Cheryl Sabella and Terry Jan Reedy.
402
terryjreedy503bc632017-06-10 20:46:08 -0400403bpo-30290: Help-about: use pep8 names and add tests.
404Increase coverage to 100%.
405Patches by Louie Lu, Cheryl Sabella, and Terry Jan Reedy.
406
407bpo-30303: Add _utest option to textview; add new tests.
408Increase coverage to 100%.
409Patches by Louie Lu and Terry Jan Reedy.
410
terryjreedy1ccbad92017-07-05 19:36:48 -0400411Issue #29071: IDLE colors f-string prefixes but not invalid ur prefixes.
terryjreedy503bc632017-06-10 20:46:08 -0400412
413Issue #28572: Add 10% to coverage of IDLE's test_configdialog.
414Update and augment description of the configuration system.
415
416
Terry Jan Reedy05e80672018-02-04 19:07:16 -0500417What's New in IDLE 3.6.0 (since 3.5.0)
terryjreedy503bc632017-06-10 20:46:08 -0400418Released on 2016-12-23
Terry Jan Reedy05e80672018-02-04 19:07:16 -0500419======================================
Terry Jan Reedy1e957d12016-06-26 18:20:20 -0400420
Terry Jan Reedy3dad1a52016-09-12 01:57:25 -0400421- Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
422 Patch by Roger Serwy, updated by Bayard Randel.
Terry Jan Reedy1e957d12016-06-26 18:20:20 -0400423
Terry Jan Reedyd92cecb2016-09-10 16:24:54 -0400424- Issue #27922: Stop IDLE tests from 'flashing' gui widgets on the screen.
425
Terry Jan Reedy70360192016-09-10 16:28:01 -0400426- Issue #27891: Consistently group and sort imports within idlelib modules.
427
428- Issue #17642: add larger font sizes for classroom projection.
429
Terry Jan Reedyd92cecb2016-09-10 16:24:54 -0400430- Add version to title of IDLE help window.
431
432- Issue #25564: In section on IDLE -- console differences, mention that
433 using exec means that __builtins__ is defined for each statement.
434
Terry Jan Reedy70360192016-09-10 16:28:01 -0400435- Issue #27821: Fix 3.6.0a3 regression that prevented custom key sets
436 from being selected when no custom theme was defined.
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400437
Terry Jan Reedyd3fb5572016-08-20 21:41:03 -0400438- Issue #27714: text_textview and test_autocomplete now pass when re-run
439 in the same process. This occurs when test_idle fails when run with the
Terry Jan Reedy9f957702016-08-21 00:18:55 -0400440 -w option but without -jn. Fix warning from test_config.
Terry Jan Reedyd3fb5572016-08-20 21:41:03 -0400441
Terry Jan Reedy97c463d2016-08-20 21:43:00 -0400442- Issue #27621: Put query response validation error messages in the query
Terry Jan Reedy49dcf9d2016-08-21 00:20:35 -0400443 box itself instead of in a separate massagebox. Redo tests to match.
Terry Jan Reedy97c463d2016-08-20 21:43:00 -0400444 Add Mac OSX refinements. Original patch by Mark Roseman.
445
446- Issue #27620: Escape key now closes Query box as cancelled.
447
448- Issue #27609: IDLE: tab after initial whitespace should tab, not
Terry Jan Reedy49dcf9d2016-08-21 00:20:35 -0400449 autocomplete. This fixes problem with writing docstrings at least
Terry Jan Reedy97c463d2016-08-20 21:43:00 -0400450 twice indented.
451
452- Issue #27609: Explicitly return None when there are also non-None
453 returns. In a few cases, reverse a condition and eliminate a return.
454
Terry Jan Reedyd3fb5572016-08-20 21:41:03 -0400455- Issue #25507: IDLE no longer runs buggy code because of its tkinter imports.
456 Users must include the same imports required to run directly in Python.
457
Terry Jan Reedy97c463d2016-08-20 21:43:00 -0400458- Issue #27173: Add 'IDLE Modern Unix' to the built-in key sets.
459 Make the default key set depend on the platform.
460 Add tests for the changes to the config module.
461
Terry Jan Reedyd3fb5572016-08-20 21:41:03 -0400462- Issue #27452: add line counter and crc to IDLE configHandler test dump.
463
Terry Jan Reedy4bf9c512016-07-10 20:30:43 -0400464- Issue #27477: IDLE search dialogs now use ttk widgets.
465
466- Issue #27173: Add 'IDLE Modern Unix' to the built-in key sets.
467 Make the default key set depend on the platform.
468 Add tests for the changes to the config module.
469
470- Issue #27452: make command line "idle-test> python test_help.py" work.
471 __file__ is relative when python is started in the file's directory.
472
473- Issue #27452: add line counter and crc to IDLE configHandler test dump.
474
475- Issue #27380: IDLE: add query.py with base Query dialog and ttk widgets.
476 Module had subclasses SectionName, ModuleName, and HelpSource, which are
477 used to get information from users by configdialog and file =>Load Module.
478 Each subclass has itw own validity checks. Using ModuleName allows users
479 to edit bad module names instead of starting over.
480 Add tests and delete the two files combined into the new one.
481
Terry Jan Reedy754a5c12016-06-26 18:22:32 -0400482- Issue #27372: Test_idle no longer changes the locale.
Terry Jan Reedy1e957d12016-06-26 18:20:20 -0400483
484- Issue #27365: Allow non-ascii chars in IDLE NEWS.txt, for contributor names.
485
486- Issue #27245: IDLE: Cleanly delete custom themes and key bindings.
487 Previously, when IDLE was started from a console or by import, a cascade
488 of warnings was emitted. Patch by Serhiy Storchaka.
489
Terry Jan Reedy754a5c12016-06-26 18:22:32 -0400490- Issue #24137: Run IDLE, test_idle, and htest with tkinter default root disabled.
491 Fix code and tests that fail with this restriction.
492 Fix htests to not create a second and redundant root and mainloop.
Terry Jan Reedy1e957d12016-06-26 18:20:20 -0400493
Terry Jan Reedy754a5c12016-06-26 18:22:32 -0400494- Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400495
Terry Jan Reedy8ace13b2016-06-11 04:31:22 -0400496- Issue #5124: Paste with text selected now replaces the selection on X11.
497 This matches how paste works on Windows, Mac, most modern Linux apps,
498 and ttk widgets. Original patch by Serhiy Storchaka.
499
Terry Jan Reedyb1c9b642016-06-11 04:36:34 -0400500- Issue #24750: Switch all scrollbars in IDLE to ttk versions.
501 Where needed, minimal tests are added to cover changes.
502
503- Issue #24759: IDLE requires tk 8.5 and availability ttk widgets.
504 Delete now unneeded tk version tests and code for older versions.
505 Add test for IDLE syntax colorizer.
506
507- Issue #27239: idlelib.macosx.isXyzTk functions initialize as needed.
508
509- Issue #27262: move Aqua unbinding code, which enable context menus, to maxosx.
510
Terry Jan Reedy8bff8f62016-06-07 15:33:53 -0400511- Issue #24759: Make clear in idlelib.idle_test.__init__ that the directory
512 is a private implementation of test.test_idle and tool for maintainers.
513
Terry Jan Reedyea938ba2016-06-07 15:35:37 -0400514- Issue #27196: Stop 'ThemeChanged' warnings when running IDLE tests.
Terry Jan Reedy8bff8f62016-06-07 15:33:53 -0400515 These persisted after other warnings were suppressed in #20567.
516 Apply Serhiy Storchaka's update_idletasks solution to four test files.
517 Record this additional advice in idle_test/README.txt
518
519- Issue #20567: Revise idle_test/README.txt with advice about avoiding
520 tk warning messages from tests. Apply advice to several IDLE tests.
521
Terry Jan Reedyea938ba2016-06-07 15:35:37 -0400522- Issue # 24225: Update idlelib/README.txt with new file names
523 and event handlers.
524
525- Issue #27156: Remove obsolete code not used by IDLE. Replacements:
526 1. help.txt, replaced by help.html, is out-of-date and should not be used.
527 Its dedicated viewer has be replaced by the html viewer in help.py.
528 2. 'import idlever; I = idlever.IDLE_VERSION' is the same as
529 'import sys; I = version[:version.index(' ')]'
530 3. After 'ob = stackviewer.VariablesTreeItem(*args)',
531 'ob.keys()' == 'list(ob.object.keys).
532 4. In macosc, runningAsOSXAPP == isAquaTk; idCarbonAquaTk == isCarbonTk
533
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400534- Issue #27117: Make colorizer htest and turtledemo work with dark themes.
535 Move code for configuring text widget colors to a new function.
536
Terry Jan Reedy137bac22016-05-30 01:04:08 -0400537- Issue #24225: Rename many idlelib/*.py and idle_test/test_*.py files.
538 Edit files to replace old names with new names when the old name
539 referred to the module rather than the class it contained.
540 See the issue and IDLE section in What's New in 3.6 for more.
541
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400542- Issue #26673: When tk reports font size as 0, change to size 10.
543 Such fonts on Linux prevented the configuration dialog from opening.
544
545- Issue #21939: Add test for IDLE's percolator.
546 Original patch by Saimadhav Heblikar.
547
548- Issue #21676: Add test for IDLE's replace dialog.
549 Original patch by Saimadhav Heblikar.
550
551- Issue #18410: Add test for IDLE's search dialog.
Terry Jan Reedy6ff7a142016-06-22 03:55:20 -0400552 Original patch by Westley Martínez.
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400553
Terry Jan Reedy137bac22016-05-30 01:04:08 -0400554- Issue #21703: Add test for undo delegator. Patch mostly by
555 Saimadhav Heblikar .
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400556
557- Issue #27044: Add ConfigDialog.remove_var_callbacks to stop memory leaks.
558
559- Issue #23977: Add more asserts to test_delegator.
560
561- Issue #20640: Add tests for idlelib.configHelpSourceEdit.
562 Patch by Saimadhav Heblikar.
563
564- In the 'IDLE-console differences' section of the IDLE doc, clarify
565 how running with IDLE affects sys.modules and the standard streams.
566
567- Issue #25507: fix incorrect change in IOBinding that prevented printing.
568 Augment IOBinding htest to include all major IOBinding functions.
569
Terry Jan Reedy6ff7a142016-06-22 03:55:20 -0400570- Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION
Terry Jan Reedyf45d27b2016-05-30 01:02:34 -0400571 MARK in README.txt and open this and NEWS.txt with 'ascii'.
572 Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'.
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400573
Terry Jan Reedy6e92c112015-11-21 13:31:27 -0500574- Issue 15348: Stop the debugger engine (normally in a user process)
575 before closing the debugger window (running in the IDLE process).
576 This prevents the RuntimeErrors that were being caught and ignored.
577
578- Issue #24455: Prevent IDLE from hanging when a) closing the shell while the
579 debugger is active (15347); b) closing the debugger with the [X] button
580 (15348); and c) activating the debugger when already active (24455).
581 The patch by Mark Roseman does this by making two changes.
582 1. Suspend and resume the gui.interaction method with the tcl vwait
583 mechanism intended for this purpose (instead of root.mainloop & .quit).
584 2. In gui.run, allow any existing interaction to terminate first.
585
586- Change 'The program' to 'Your program' in an IDLE 'kill program?' message
587 to make it clearer that the program referred to is the currently running
588 user program, not IDLE itself.
589
590- Issue #24750: Improve the appearance of the IDLE editor window status bar.
591 Patch by Mark Roseman.
592
593- Issue #25313: Change the handling of new built-in text color themes to better
594 address the compatibility problem introduced by the addition of IDLE Dark.
595 Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
596
597- Issue #24782: Extension configuration is now a tab in the IDLE Preferences
598 dialog rather than a separate dialog. The former tabs are now a sorted
599 list. Patch by Mark Roseman.
600
601- Issue #22726: Re-activate the config dialog help button with some content
602 about the other buttons and the new IDLE Dark theme.
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400603
Terry Jan Reedyd17e9782015-10-04 01:14:51 -0400604- Issue #24820: IDLE now has an 'IDLE Dark' built-in text color theme.
605 It is more or less IDLE Classic inverted, with a cobalt blue background.
606 Strings, comments, keywords, ... are still green, red, orange, ... .
Terry Jan Reedy6e92c112015-11-21 13:31:27 -0500607 To use it with IDLEs released before November 2015, hit the
608 'Save as New Custom Theme' button and enter a new name,
609 such as 'Custom Dark'. The custom theme will work with any IDLE
610 release, and can be modified.
Terry Jan Reedyd17e9782015-10-04 01:14:51 -0400611
612- Issue #25224: README.txt is now an idlelib index for IDLE developers and
Terry Jan Reedy6e92c112015-11-21 13:31:27 -0500613 curious users. The previous user content is now in the IDLE doc chapter.
614 'IDLE' now means 'Integrated Development and Learning Environment'.
Terry Jan Reedyd17e9782015-10-04 01:14:51 -0400615
616- Issue #24820: Users can now set breakpoint colors in
617 Settings -> Custom Highlighting. Original patch by Mark Roseman.
618
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -0400619- Issue #24972: Inactive selection background now matches active selection
Terry Jan Reedy6e92c112015-11-21 13:31:27 -0500620 background, as configured by users, on all systems. Found items are now
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -0400621 always highlighted on Windows. Initial patch by Mark Roseman.
622
623- Issue #24570: Idle: make calltip and completion boxes appear on Macs
624 affected by a tk regression. Initial patch by Mark Roseman.
625
626- Issue #24988: Idle ScrolledList context menus (used in debugger)
627 now work on Mac Aqua. Patch by Mark Roseman.
628
629- Issue #24801: Make right-click for context menu work on Mac Aqua.
630 Patch by Mark Roseman.
631
632- Issue #25173: Associate tkinter messageboxes with a specific widget.
633 For Mac OSX, make them a 'sheet'. Patch by Mark Roseman.
634
635- Issue #25198: Enhance the initial html viewer now used for Idle Help.
636 * Properly indent fixed-pitch text (patch by Mark Roseman).
637 * Give code snippet a very Sphinx-like light blueish-gray background.
638 * Re-use initial width and height set by users for shell and editor.
639 * When the Table of Contents (TOC) menu is used, put the section header
Terry Jan Reedy6e92c112015-11-21 13:31:27 -0500640 at the top of the screen.
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -0400641
642- Issue #25225: Condense and rewrite Idle doc section on text colors.
643
644- Issue #21995: Explain some differences between IDLE and console Python.
645
646- Issue #22820: Explain need for *print* when running file from Idle editor.
647
648- Issue #25224: Doc: augment Idle feature list and no-subprocess section.
649
650- Issue #25219: Update doc for Idle command line options.
651 Some were missing and notes were not correct.
652
Terry Jan Reedyd9763c22015-09-21 19:28:22 -0400653- Issue #24861: Most of idlelib is private and subject to change.
Terry Jan Reedy9af7fe72015-09-28 23:38:57 -0400654 Use idleib.idle.* to start Idle. See idlelib.__init__.__doc__.
Terry Jan Reedyd9763c22015-09-21 19:28:22 -0400655
Terry Jan Reedy09fbb202015-09-21 01:07:59 -0400656- Issue #25199: Idle: add synchronization comments for future maintainers.
657
Terry Jan Reedycba1a1a2015-09-21 22:36:42 -0400658- Issue #16893: Replace help.txt with help.html for Idle doc display.
659 The new idlelib/help.html is rstripped Doc/build/html/library/idle.html.
Terry Jan Reedy09fbb202015-09-21 01:07:59 -0400660 It looks better than help.txt and will better document Idle as released.
Terry Jan Reedyd9763c22015-09-21 19:28:22 -0400661 The tkinter html viewer that works for this file was written by Mark Roseman.
Terry Jan Reedy09fbb202015-09-21 01:07:59 -0400662 The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
663
664- Issue #24199: Deprecate unused idlelib.idlever with possible removal in 3.6.
665
Terry Jan Reedy09fbb202015-09-21 01:07:59 -0400666- Issue #24790: Remove extraneous code (which also create 2 & 3 conflicts).
667
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -0400668
Terry Jan Reedy5c4725e2014-10-01 03:10:27 -0400669What's New in IDLE 3.5.0?
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400670=========================
Terry Jan Reedyc8f4bbb2015-09-21 01:10:21 -0400671*Release date: 2015-09-13*
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400672
Terry Jan Reedy5080deb2015-08-16 23:23:16 -0400673- Issue #23672: Allow Idle to edit and run files with astral chars in name.
674 Patch by Mohd Sanad Zaki Rizvi.
675
676- Issue 24745: Idle editor default font. Switch from Courier to
677 platform-sensitive TkFixedFont. This should not affect current customized
678 font selections. If there is a problem, edit $HOME/.idlerc/config-main.cfg
679 and remove 'fontxxx' entries from [Editor Window]. Patch by Mark Roseman.
680
681- Issue #21192: Idle editor. When a file is run, put its name in the restart bar.
682 Do not print false prompts. Original patch by Adnan Umer.
683
684- Issue #13884: Idle menus. Remove tearoff lines. Patch by Roger Serwy.
685
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400686- Issue #23184: remove unused names and imports in idlelib.
687 Initial patch by Al Sweigart.
688
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400689- Issue #20577: Configuration of the max line length for the FormatParagraph
690 extension has been moved from the General tab of the Idle preferences dialog
691 to the FormatParagraph tab of the Config Extensions dialog.
692 Patch by Tal Einat.
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400693
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500694- Issue #16893: Update Idle doc chapter to match current Idle and add new
695 information.
696
697- Issue #3068: Add Idle extension configuration dialog to Options menu.
698 Changes are written to HOME/.idlerc/config-extensions.cfg.
699 Original patch by Tal Einat.
700
Martin Panter204bf0b2016-07-11 07:51:37 +0000701- Issue #16233: A module browser (File : Class Browser, Alt+C) requires an
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500702 editor window with a filename. When Class Browser is requested otherwise,
703 from a shell, output window, or 'Untitled' editor, Idle no longer displays
704 an error box. It now pops up an Open Module box (Alt+M). If a valid name
705 is entered and a module is opened, a corresponding browser is also opened.
706
707- Issue #4832: Save As to type Python files automatically adds .py to the
708 name you enter (even if your system does not display it). Some systems
709 automatically add .txt when type is Text files.
710
711- Issue #21986: Code objects are not normally pickled by the pickle module.
712 To match this, they are no longer pickled when running under Idle.
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500713
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400714- Issue #23180: Rename IDLE "Windows" menu item to "Window".
715 Patch by Al Sweigart.
Terry Jan Reedy81f01fb2014-12-05 20:49:32 -0500716
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400717- Issue #17390: Adjust Editor window title; remove 'Python',
718 move version to end.
719
720- Issue #14105: Idle debugger breakpoints no longer disappear
Martin Panter96a4f072016-02-10 01:17:51 +0000721 when inserting or deleting lines.
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400722
723- Issue #17172: Turtledemo can now be run from Idle.
724 Currently, the entry is on the Help menu, but it may move to Run.
725 Patch by Ramchandra Apt and Lita Cho.
726
727- Issue #21765: Add support for non-ascii identifiers to HyperParser.
728
729- Issue #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav
730 Heblikar.
731
732- Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
733
734- Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.
735
736- Issue #21686: add unittest for HyperParser. Original patch by Saimadhav
737 Heblikar.
738
739- Issue #12387: Add missing upper(lower)case versions of default Windows key
740 bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
741
742- Issue #21695: Closing a Find-in-files output window while the search is
743 still in progress no longer closes Idle.
744
745- Issue #18910: Add unittest for textView. Patch by Phil Webster.
746
747- Issue #18292: Add unittest for AutoExpand. Patch by Saihadhav Heblikar.
748
749- Issue #18409: Add unittest for AutoComplete. Patch by Phil Webster.
750
Terry Jan Reedy5c4725e2014-10-01 03:10:27 -0400751- Issue #21477: htest.py - Improve framework, complete set of tests.
752 Patches by Saimadhav Heblikar
Terry Jan Reedy9e883ca2014-10-01 03:08:17 -0400753
754- Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin
755 consolidating and improving human-validated tests of Idle. Change other files
756 as needed to work with htest. Running the module as __main__ runs all tests.
757
758- Issue #21139: Change default paragraph width to 72, the PEP 8 recommendation.
759
760- Issue #21284: Paragraph reformat test passes after user changes reformat width.
761
762- Issue #17654: Ensure IDLE menus are customized properly on OS X for
763 non-framework builds and for all variants of Tk.
764
765
Ned Deily5d590d82012-10-18 18:19:11 -0700766What's New in IDLE 3.4.0?
Ned Deilybfbf3f12012-10-18 18:16:44 -0700767=========================
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400768*Release date: 2014-03-16*
Ned Deilybfbf3f12012-10-18 18:16:44 -0700769
Terry Jan Reedy32622232013-03-30 18:32:19 -0400770- Issue #17390: Display Python version on Idle title bar.
771 Initial patch by Edmond Burnett.
772
Andrew Svetlov1bd7f022013-01-14 19:27:36 +0200773- Issue #5066: Update IDLE docs. Patch by Todd Rovito.
774
Georg Brandl9aa23c52013-04-06 09:40:02 +0200775- Issue #17625: Close the replace dialog after it is used.
776
Ned Deilybfbf3f12012-10-18 18:16:44 -0700777- Issue #16226: Fix IDLE Path Browser crash.
778 (Patch by Roger Serwy)
779
Ned Deilyb6d24d92012-10-22 15:18:46 -0700780- Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
781 with certain versions of Tk 8.5. Initial patch by Kevin Walzer.
782
Ned Deilybfbf3f12012-10-18 18:16:44 -0700783
Martin v. Löwis156989a2012-06-03 12:00:48 +0200784What's New in IDLE 3.3.0?
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200785=========================
Terry Jan Reedyc4dc43e2015-05-23 17:23:30 -0400786*Release date: 2012-09-29*
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200787
Georg Brandl8bc7e312013-04-06 09:36:20 +0200788- Issue #17625: Close the replace dialog after it is used.
789
Martin v. Löwis30d5e6c2012-07-25 11:32:26 +0200790- Issue #7163: Propagate return value of sys.stdout.write.
791
Martin v. Löwisc882b7c2012-07-25 10:47:20 +0200792- Issue #15318: Prevent writing to sys.stdin.
793
Ned Deilyc65ef9b2012-07-09 18:16:11 -0700794- Issue #4832: Modify IDLE to save files with .py extension by
795 default on Windows and OS X (Tk 8.5) as it already does with X11 Tk.
796
Martin v. Löwis8a75bed2012-07-11 08:29:03 +0200797- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
Martin v. Löwis9ae3f7a2012-07-09 20:46:11 +0200798
Terry Jan Reedy2a2ce4f2012-06-07 19:41:04 -0400799- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
800 Erroneous tool tips have been corrected. Default added for callables.
801
Terry Jan Reedy55f3ae62016-09-29 23:59:55 -0400802- Issue #10365: File open dialog now works instead of crashing even when
Terry Jan Reedy2a2ce4f2012-06-07 19:41:04 -0400803 parent window is closed while dialog is open.
804
805- Issue 14876: use user-selected font for highlight configuration.
806
Martin v. Löwis862d13a2012-06-03 11:55:32 +0200807- Issue #14937: Perform auto-completion of filenames in strings even for
Martin v. Löwis9f44a662012-06-03 12:32:42 +0200808 non-ASCII filenames. Likewise for identifiers.
Martin v. Löwis862d13a2012-06-03 11:55:32 +0200809
Andrew Svetlovdfe980b2012-04-05 21:54:39 +0300810- Issue #8515: Set __file__ when run file in IDLE.
811 Initial patch by Bruce Frederiksen.
812
Éric Araujo1641bb72012-03-26 23:35:31 -0400813- IDLE can be launched as `python -m idlelib`
Andrew Svetlova5cf6c42012-03-26 22:14:13 +0300814
Andrew Svetlovf3c29762012-03-31 14:10:10 +0300815- Issue #14409: IDLE now properly executes commands in the Shell window
816 when it cannot read the normal config files on startup and
817 has to use the built-in default key bindings.
818 There was previously a bug in one of the defaults.
Andrew Svetlov67ac0792012-03-29 19:01:28 +0300819
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200820- Issue #3573: IDLE hangs when passing invalid command line args
821 (directory(ies) instead of file(s)).
822
Ned Deilyeb00d092012-07-30 03:38:02 -0700823- Issue #14018: Update checks for unstable system Tcl/Tk versions on OS X
824 to include versions shipped with OS X 10.7 and 10.8 in addition to 10.6.
825
Andrew Svetlov0f71f442012-03-21 13:23:41 +0200826
Kurt B. Kaiser6551baa2011-05-11 13:54:44 -0400827What's New in IDLE 3.2.1?
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400828=========================
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400829*Release date: 15-May-11*
830
Kurt B. Kaiserdfbe1592011-05-14 17:20:09 -0400831- Issue #6378: Further adjust idle.bat to start associated Python
832
Kurt B. Kaiser0a429822011-05-12 15:25:24 -0400833- Issue #11896: Save on Close failed despite selecting "Yes" in dialog.
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400834
835- Issue #1028: Ctrl-space binding to show completions was causing IDLE to exit.
836 Tk < 8.5 was sending invalid Unicode null; replaced with valid null.
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400837
Terry Jan Reedy55f3ae62016-09-29 23:59:55 -0400838- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
839 behavior. Improve selection extension behaviour.
Kurt B. Kaiser946f1722011-03-25 20:29:13 -0400840
Terry Jan Reedy55f3ae62016-09-29 23:59:55 -0400841- Issue #3851: <Home> toggle non-functional when NumLock set on Windows.
Kurt B. Kaiser75fc5662011-03-21 02:13:42 -0400842
843
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000844What's New in IDLE 3.1b1?
845=========================
Kurt B. Kaisere1478062011-05-11 12:24:17 -0400846*Release date: 06-May-09*
Kurt B. Kaiser160ff012009-04-25 20:14:29 +0000847
Terry Jan Reedy55f3ae62016-09-29 23:59:55 -0400848- Issue #5707: Use of 'filter' in keybindingDialog.py was causing custom key assignment to
849 fail. Patch by Amaury Forgeot d'Arc.
Kurt B. Kaiser113f0e82009-04-04 20:38:52 +0000850
Martin v. Löwis7e158452009-01-18 20:23:36 +0000851- Issue #4815: Offer conversion to UTF-8 if source files have
852 no encoding declaration and are not encoded in UTF-8.
853
Martin v. Löwis975a0792009-01-18 20:15:42 +0000854- Issue #4008: Fix problems with non-ASCII source files.
855
Martin v. Löwis5216d082008-12-29 18:43:40 +0000856- Issue #4323: Always encode source as UTF-8 without asking
857 the user (unless a different encoding is declared); remove
858 user configuration of source encoding; all according to
859 PEP 3120.
860
Ronald Oussorene9f8bf02009-01-02 13:10:34 +0000861- Issue #2665: On Windows, an IDLE installation upgraded from an old version
862 would not start if a custom theme was defined.
863
Terry Jan Reedy55f3ae62016-09-29 23:59:55 -0400864------------------------------------------------------------------------
865Refer to NEWS2x.txt and HISTORY.txt for information on earlier releases.
866------------------------------------------------------------------------