diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 14:42:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 14:42:23 (GMT) |
commit | 745a407df88f2c5baacb4e61d8e37e7ed5d4671f (patch) | |
tree | 6481a2da36b36ce2e01c94bb5cabd3bbb8ededad /Misc | |
parent | e7614dd07d533ec4f22007d65649175b9dee8be4 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |