Update idlelib/NEWS.txt. (#2703) · python/cpython@0d0a32f (original) (raw)

Original file line number Diff line number Diff line change
@@ -3,6 +3,37 @@ Released on 2018-06-18?
3 3 ========================
4 4
5 5
6 +bpo-30913: Document ConfigDialog tk Vars, methods, and widgets in docstrings
7 +This will facilitate improving the dialog and splitting up the class.
8 +Original patch by Cheryl Sabella.
9 +
10 +bpo-30899: Add tests for ConfigParser subclasses in config.
11 +Coverage is 100% for those classes and ConfigChanges.
12 +Patch by Louie Lu.
13 +
14 +bpo-30881: Add docstrings to browser.py.
15 +Patch by Cheryl Sabella.
16 +
17 +bpo-30851: Remove unused tk variables in configdialog.
18 +One is a duplicate, one is set but cannot be altered by users.
19 +Patch by Cheryl Sabella.
20 +
21 +bpo-30870: Select font option with Up and Down keys, as well as with mouse.
22 +Added test increases configdialog coverage to 60%
23 +Patches mostly by Louie Lu.
24 +
25 +bpo-8231: Call config.IdleConf.GetUserCfgDir only once per process.
26 +
27 +bpo-30779: Factor ConfigChanges class from configdialog, put in config; test.
28 +* In config, put dump test code in a function; run it and unittest in
29 + 'if __name__ == '__main__'.
30 +* Add class config.ConfigChanges based on changes_class_v4.py on bpo issue.
31 +* Add class test_config.ChangesTest, partly using configdialog_tests_v1.py.
32 +* Revise configdialog to use ConfigChanges; see tracker msg297804.
33 +* Revise test_configdialog to match configdialog changes.
34 +* Remove configdialog functions unused or moved to ConfigChanges.
35 +Cheryl Sabella contributed parts of the patch.
36 +
6 37 bpo-30777: Configdialog - add docstrings and improve comments.
7 38 Patch by Cheryl Sabella.
8 39