Do not add an obsolete unittest name to Py3.2.
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 @@
 
       .. 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*,
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index f59c068..efba646 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -1029,9 +1029,6 @@
             standardMsg = '\n'.join(errors)
             self.fail(self._formatMessage(msg, standardMsg))
 
-    # Old name for assertCountEqual()
-    assertItemsEqual = assertCountEqual
-
     def assertMultiLineEqual(self, first, second, msg=None):
         """Assert that two multi-line strings are equal."""
         self.assertIsInstance(first, str, 'First argument is not a string')