summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-07-08 00:49:37 (GMT)
committerGitHub <noreply@github.com>2017-07-08 00:49:37 (GMT)
commit24f2e19d68cc6ca563d2be5944d11d5f55a46918 (patch)
tree4242f71f8438841b4667dc13effd8d893a45a61a /Misc
parent349abd9e37dfdc077bc21f19e6ed2292c767f0e8 (diff)
downloadcpython-24f2e19d68cc6ca563d2be5944d11d5f55a46918.zip
cpython-24f2e19d68cc6ca563d2be5944d11d5f55a46918.tar.gz
cpython-24f2e19d68cc6ca563d2be5944d11d5f55a46918.tar.bz2
bpo-30779: News (#2627)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-07-07-20-26-37.bpo-30779.8KXEXN.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-07-07-20-26-37.bpo-30779.8KXEXN.rst b/Misc/NEWS.d/next/IDLE/2017-07-07-20-26-37.bpo-30779.8KXEXN.rst
new file mode 100644
index 0000000..1d0dc18
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2017-07-07-20-26-37.bpo-30779.8KXEXN.rst
@@ -0,0 +1,8 @@
+IDLE: Factor ConfigChanges class from configdialog, put in config; test. *
+In config, put dump test code in a function; run it and unittest in 'if
+__name__ == '__main__'. * Add class config.ConfigChanges based on
+changes_class_v4.py on bpo issue. * Add class test_config.ChangesTest,
+partly using configdialog_tests_v1.py. * Revise configdialog to use
+ConfigChanges; see tracker msg297804. * Revise test_configdialog to match
+configdialog changes. * Remove configdialog functions unused or moved to
+ConfigChanges. Cheryl Sabella contributed parts of the patch.