summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-26 14:42:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-26 14:42:23 (GMT)
commit745a407df88f2c5baacb4e61d8e37e7ed5d4671f (patch)
tree6481a2da36b36ce2e01c94bb5cabd3bbb8ededad /Misc
parente7614dd07d533ec4f22007d65649175b9dee8be4 (diff)
downloadcpython-745a407df88f2c5baacb4e61d8e37e7ed5d4671f.zip
cpython-745a407df88f2c5baacb4e61d8e37e7ed5d4671f.tar.gz
cpython-745a407df88f2c5baacb4e61d8e37e7ed5d4671f.tar.bz2
Issue #22115: Fixed tracing Tkinter variables:
* tracing in the "u" mode now works * trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f580afe..cc53bcd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
Library
-------
+- Issue #22115: Fixed tracing Tkinter variables: trace_vdelete() with wrong
+ mode no longer break tracing, trace_vinfo() now always returns a list of
+ pairs of strings, tracing in the "u" mode now works.
+
- Fix a scoping issue in importlib.util.LazyLoader which triggered an
UnboundLocalError when lazy-loading a module that was already put into
sys.modules.