diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-29 01:38:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-29 01:38:25 (GMT) |
commit | 40b8cf528fdc7896c3677342f6050b4d80377ee4 (patch) | |
tree | 98a900b39788c0a993d39c9bf164d0efc0f8e8de /Doc | |
parent | fc889c48edc17b9502c0aef416ce2d003dbef4e6 (diff) | |
download | cpython-40b8cf528fdc7896c3677342f6050b4d80377ee4.zip cpython-40b8cf528fdc7896c3677342f6050b4d80377ee4.tar.gz cpython-40b8cf528fdc7896c3677342f6050b4d80377ee4.tar.bz2 |
Do not add an obsolete unittest name to Py3.2.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 2236f72..6bfdd8d 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1144,13 +1144,6 @@ Test cases .. versionadded:: 3.2 - .. method:: assertItemsEqual(actual, expected, msg=None) - - Outdated name for :meth:`assertCountEqual`, kept for compatibility - with Python 2.7. - - .. versionadded:: 3.2 - .. method:: assertSameElements(actual, expected, msg=None) Test that sequence *expected* contains the same elements as *actual*, |