cpython (2.7): #17866: mention that in Python 3, assertItemsEqual is named assertCountEqual.
http://hg.python.org/cpython/rev/d9921cb6e3cd changeset: 83548:d9921cb6e3cd branch: 2.7 parent: 83545:5da7bb478dd9 user: Ezio Melotti <ezio.melotti@gmail.com> date: Mon Apr 29 12:26:01 2013 +0300 summary: #17866: mention that in Python 3, assertItemsEqual is named assertCountEqual. files: Doc/library/unittest.rst | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1075,6 +1075,8 @@ sorted(actual))`` but it works with sequences of unhashable objects as well. + In Python 3, this method is named ``assertCountEqual``. + .. versionadded:: 2.7 -- Repository URL: http://hg.python.org/cpython
participants (1)
-
ezio.melotti