diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-24 06:07:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-24 06:07:09 (GMT) |
commit | d3ea06537ca902ff1fb034f014232b5970fabda7 (patch) | |
tree | 21487b0890c033be8829bccfb704bc9f54a3d0f6 /Misc | |
parent | 8cb673816b5efa824092c1a70936665f5b4b72eb (diff) | |
download | cpython-d3ea06537ca902ff1fb034f014232b5970fabda7.zip cpython-d3ea06537ca902ff1fb034f014232b5970fabda7.tar.gz cpython-d3ea06537ca902ff1fb034f014232b5970fabda7.tar.bz2 |
Issue #22236: Tkinter tests now don't reuse default root window. New root
window is created for every test class.
Fixed Tkinter images copying operations in NoDefaultRoot mode.
Tcl command names generated for "after" callbacks now contains a name of
original function.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,8 @@ Core and Builtins Library ------- +- Issue #22236: Fixed Tkinter images copying operations in NoDefaultRoot mode. + - Issue #22191: Fixed warnings.__all__. - Issue #21308: Backport numerous features from Python's ssl module. This is @@ -108,6 +110,9 @@ Tools/Demos Tests ----- +- Issue #22236: Tkinter tests now don't reuse default root window. New root + window is created for every test class. + - Issue #18004: test_overflow in test_list by mistake consumed 40 GiB of memory on 64-bit systems. |