summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-09-15 11:50:44 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-09-15 11:50:44 (GMT)
commit8fad1676a215bab3e61dccf0f1802ccb17a43a41 (patch)
tree8a372bcba4c55571779e527d4c202bc2ab04ea0b /Misc/NEWS
parentb85a97600a45bf235fd8b541ebab358f6a8aa5dd (diff)
downloadcpython-8fad1676a215bab3e61dccf0f1802ccb17a43a41.zip
cpython-8fad1676a215bab3e61dccf0f1802ccb17a43a41.tar.gz
cpython-8fad1676a215bab3e61dccf0f1802ccb17a43a41.tar.bz2
Issue #22166: clear codec caches in test_codecs
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 f7e9fa7..9ba754a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -344,6 +344,10 @@ IDLE
Tests
-----
+- 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.