@@ -3,6 +3,51 @@ Released on 2017-09-25?
3
3
========================
4
4
5
5
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
+
6
51
bpo-31205: Factor KeysPage(Frame) class from ConfigDialog.
7
52
The slightly modified tests continue to pass.
8
53
Patch by Cheryl Sabella.
@@ -32,6 +77,7 @@ broken by the switch to ttk.Notebook is fixed.
32
77
Patch mostly by Cheryl Sabella.
33
78
34
79
bpo-30781: IDLE - Use ttk Notebook in ConfigDialog.
80
+ This improves navigation by tabbing.
35
81
Patch by Terry Jan Reedy.
36
82
37
83
bpo-31060: IDLE - Finish rearranging methods of ConfigDialog.
0 commit comments