summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-03-20 03:00:34 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-03-20 03:00:34 (GMT)
commit98e7b7644bfa3ecc7919b1a139da299da081f34e (patch)
tree97e7397de6a4d75f8daf3db2ee3d4dfead5c8902 /Doc/whatsnew
parent2e6d2622bd793c0eda9e838bb12d98b02ab0db18 (diff)
downloadcpython-98e7b7644bfa3ecc7919b1a139da299da081f34e.zip
cpython-98e7b7644bfa3ecc7919b1a139da299da081f34e.tar.gz
cpython-98e7b7644bfa3ecc7919b1a139da299da081f34e.tar.bz2
Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index d9ade51..20a4b56 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -1086,7 +1086,7 @@ GvR worked on merging them into Python's version of :mod:`unittest`.
* :meth:`assertIn` and :meth:`assertNotIn` tests whether
*first* is or is not in *second*.
-* :meth:`assertSameElements` tests whether two provided sequences
+* :meth:`assertItemsEqual` tests whether two provided sequences
contain the same elements.
* :meth:`assertSetEqual` compares whether two sets are equal, and