summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-08 15:43:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-08 15:43:55 (GMT)
commit4fafda731ac36ba2bb77342294cca70856c46505 (patch)
tree1a9872738a8437fee61f480c2b3cff18ae95075b /Misc
parent391af751f2a19476cfaa53ddc35fd53aaa582e9c (diff)
downloadcpython-4fafda731ac36ba2bb77342294cca70856c46505.zip
cpython-4fafda731ac36ba2bb77342294cca70856c46505.tar.gz
cpython-4fafda731ac36ba2bb77342294cca70856c46505.tar.bz2
Issue #24408: Fixed AttributeError in measure() and metrics() methods of
tkinter.Font.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1609816..8be0e13 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
+- Issue #24408: Fixed AttributeError in measure() and metrics() methods of
+ tkinter.Font.
+
- Issue #14373: C implementation of functools.lru_cache() now can be used with
methods.