summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorcsabella <cheryl.sabella@gmail.com>2017-07-28 18:40:59 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2017-07-28 18:40:59 (GMT)
commit5b59154c0d3d91c0766b9177f6b737b1abcbf3f6 (patch)
treed154565c17413dafc36bbbb14cd42727b0a30950 /Misc
parent6fcb69dad579cc9a7dc15eabead43b6c37464f8c (diff)
downloadcpython-5b59154c0d3d91c0766b9177f6b737b1abcbf3f6.zip
cpython-5b59154c0d3d91c0766b9177f6b737b1abcbf3f6.tar.gz
cpython-5b59154c0d3d91c0766b9177f6b737b1abcbf3f6.tar.bz2
bpo-30853: IDLE: Convert font and general vars to use VarTrace (#2914)
Instance tracers manages pairs consisting of a tk variable and a callback function. When tracing is turned on, setting the variable calls the function. Test coverage for the new class is 100%.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-07-27-10-01-14.bpo-30853.enPvvc.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-07-27-10-01-14.bpo-30853.enPvvc.rst b/Misc/NEWS.d/next/IDLE/2017-07-27-10-01-14.bpo-30853.enPvvc.rst
new file mode 100644
index 0000000..9cabca1
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2017-07-27-10-01-14.bpo-30853.enPvvc.rst
@@ -0,0 +1,5 @@
+IDLE -- Factor a VarTrace class out of ConfigDialog.
+
+Instance tracers manages pairs consisting of a tk variable and a
+callback function. When tracing is turned on, setting the variable
+calls the function. Test coverage for the new class is 100%.