Skip to content

Commit 99b941b

Browse files
miss-islingtonterryjreedy
authored andcommitted
[3.6] bpo-30928: Update idlelib/NEWS.txt to 2017-09-11. (GH-3503) (#3504)
(cherry picked from commit 8239fd7)
1 parent 31b2424 commit 99b941b

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Lib/idlelib/NEWS.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,51 @@ Released on 2017-09-25?
33
========================
44

55

6+
bpo-bpo-31414: Fix tk entry box tests by deleting first.
7+
Adding to an int entry is not the same as deleting and inserting
8+
because int('') will fail. Patch by Terry Jan Reedy.
9+
10+
bpo-27099: Convert IDLE's built-in 'extensions' to regular features.
11+
About 10 IDLE features were implemented as supposedly optional
12+
extensions. Their different behavior could be confusing or worse for
13+
users and not good for maintenance. Hence the conversion.
14+
The main difference for users is that user configurable key bindings
15+
for builtin features are now handled uniformly. Now, editing a binding
16+
in a keyset only affects its value in the keyset. All bindings are
17+
defined together in the system-specific default keysets in config-
18+
extensions.def. All custom keysets are saved as a whole in config-
19+
extension.cfg. All take effect as soon as one clicks Apply or Ok.
20+
The affected events are '<<force-open-completions>>',
21+
'<<expand-word>>', '<<force-open-calltip>>', '<<flash-paren>>',
22+
'<<format-paragraph>>', '<<run-module>>', '<<check-module>>', and
23+
'<<zoom-height>>'. Any (global) customizations made before 3.6.3 will
24+
not affect their keyset-specific customization after 3.6.3. and vice
25+
versa.
26+
Inital patch by Charles Wohlganger, revised by Terry Jan Reedy.
27+
28+
bpo-31051: Rearrange condigdialog General tab.
29+
Sort non-Help options into Window (Shell+Editor) and Editor (only).
30+
Leave room for the addition of new options.
31+
Patch by Terry Jan Reedy.
32+
33+
bpo-30617: Add docstrings and tests for outwin subclass of editor.
34+
Move some data and functions from the class to module level.
35+
Patch by Cheryl Sabella.
36+
37+
bpo-31287: Do not modify tkinter.messagebox in test_configdialog.
38+
Instead, mask it with an instance mock that can be deleted.
39+
Patch by Terry Jan Reedy.
40+
41+
bpo-30781: Use ttk widgets in ConfigDialog pages.
42+
These should especially look better on MacOSX.
43+
Patches by Terry Jan Reedy and Cheryl Sabella.
44+
45+
bpo-31206: Factor HighPage(Frame) class from ConfigDialog.
46+
Patch by Cheryl Sabella.
47+
48+
bp0-31001: Add tests for configdialog highlight tab.
49+
Patch by Cheryl Sabella.
50+
651
bpo-31205: Factor KeysPage(Frame) class from ConfigDialog.
752
The slightly modified tests continue to pass.
853
Patch by Cheryl Sabella.
@@ -32,6 +77,7 @@ broken by the switch to ttk.Notebook is fixed.
3277
Patch mostly by Cheryl Sabella.
3378

3479
bpo-30781: IDLE - Use ttk Notebook in ConfigDialog.
80+
This improves navigation by tabbing.
3581
Patch by Terry Jan Reedy.
3682

3783
bpo-31060: IDLE - Finish rearranging methods of ConfigDialog.

0 commit comments

Comments
 (0)