summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-27 09:31:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-11-27 09:31:37 (GMT)
commit6e165b30de0120360f13d86652db4c528941269f (patch)
treeb68b64c195a1ea96b472274b286701c924221987 /Misc/NEWS
parentdb213a297d5b7f4728c540b33f5e2a25b0596b23 (diff)
downloadcpython-6e165b30de0120360f13d86652db4c528941269f.zip
cpython-6e165b30de0120360f13d86652db4c528941269f.tar.gz
cpython-6e165b30de0120360f13d86652db4c528941269f.tar.bz2
Issue 10242: unittest.assertItemsEqual makes too many assumptions.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f90deb9..07f0570 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
+- Issue #10242: Fixed implementation of unittest.ItemsEqual and gave it
+ a new more informative name, unittest.CountEqual.
+
- Issue #2986: difflib.SequenceMatcher gets a new parameter, autojunk, which
can be set to False to turn off the previously undocumented 'popularity'
heuristic. Patch by Terry Reedy and Eli Bendersky.