@@ -3,6 +3,34 @@ Released on 2018-06-18?
3
3
========================
4
4
5
5
6
+ bpo-31205: Factor KeysPage(Frame) class from ConfigDialog.
7
+ The slightly modified tests continue to pass.
8
+ Patch by Cheryl Sabella.
9
+
10
+ bpo-31002: Add tests for configdialog keys tab.
11
+ Patch by Cheryl Sabella.
12
+
13
+ bpo-19903: Change calltipes to use inspect.signature.
14
+ Idlelib.calltips.get_argspec now uses inspect.signature instead of
15
+ inspect.getfullargspec, like help() does. This improves the signature
16
+ in the call tip in a few different cases, including builtins converted
17
+ to provide a signature. A message is added if the object is not
18
+ callable, has an invalid signature, or if it has positional-only
19
+ parameters. Patch by Louie Lu.
20
+
21
+ bop-31083: Add an outline of a TabPage class in configdialog.
22
+ Add template as comment. Update existing classes to match outline.
23
+ Initial patch by Cheryl Sabella.
24
+
25
+ bpo-31050: Factor GenPage(Frame) class from ConfigDialog.
26
+ The slightly modified tests for the General tab continue to pass.
27
+ Patch by Cheryl Sabella.
28
+
29
+ bpo-31004: Factor FontPage(Frame) class from ConfigDialog.
30
+ The slightly modified tests continue to pass. The General test
31
+ broken by the switch to ttk.Notebook is fixed.
32
+ Patch mostly by Cheryl Sabella.
33
+
6
34
bpo-30781: IDLE - Use ttk Notebook in ConfigDialog.
7
35
Patch by Terry Jan Reedy.
8
36
@@ -81,7 +109,7 @@ so that instances of the latter two can be placed with other widgets
81
109
within a multiframe window.
82
110
Patches by Cheryl Sabella and Terry Jan Reedy.
83
111
84
- bp0 -30723: Make several improvements to parenmatch.
112
+ bpo -30723: Make several improvements to parenmatch.
85
113
* Add 'parens' style to highlight both opener and closer.
86
114
* Make 'default' style, which is not default, a synonym for 'opener'.
87
115
* Make time-delay work the same with all styles.
0 commit comments