summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-09-15 11:55:16 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-09-15 11:55:16 (GMT)
commita0f33759fa03a1801f25420e66fab3f2d938244d (patch)
tree296619b9eca5b00fb78a6360129d47ae7e522a60 /Misc/NEWS
parent0b894b40dba989d8ed3edff310859864748f8848 (diff)
parent8fad1676a215bab3e61dccf0f1802ccb17a43a41 (diff)
downloadcpython-a0f33759fa03a1801f25420e66fab3f2d938244d.zip
cpython-a0f33759fa03a1801f25420e66fab3f2d938244d.tar.gz
cpython-a0f33759fa03a1801f25420e66fab3f2d938244d.tar.bz2
Merge fix for issue #22166 from 3.4
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3be837d..d9bac60 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -525,6 +525,10 @@ _ Issue #21597: The separator between the turtledemo text pane and the drawing
- Issue #21525: Most Tkinter methods which accepted tuples now accept lists too.
+- Issue #22166: with the assistance of a new internal _codecs._forget_codec
+ helping function, test_codecs now clears the encoding caches to avoid the
+ appearance of a reference leak
+
- Issue #22236: Tkinter tests now don't reuse default root window. New root
window is created for every test class.