From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 14 Apr 2026 23:45:32 +0000 (+0200) Subject: [3.13] gh-148186: Improve `assertCountEqual` description in docs. (GH-148463) (#148586) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb4b94c74d9a9776a153c2b841a354d614b289e4;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-148186: Improve `assertCountEqual` description in docs. (GH-148463) (#148586) gh-148186: Improve `assertCountEqual` description in docs. (GH-148463) (cherry picked from commit 94d42bf5c2b95417d6187a57fef94570ba017e33) Co-authored-by: Kliment Lamonov --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 22316e25c5aa..1a02066ff997 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1211,9 +1211,9 @@ Test cases | :meth:`assertNotRegex(s, r) | ``not r.search(s)`` | 3.2 | | ` | | | +---------------------------------------+--------------------------------+--------------+ - | :meth:`assertCountEqual(a, b) | *a* and *b* have the same | 3.2 | - | ` | elements in the same number, | | - | | regardless of their order. | | + | :meth:`assertCountEqual(a, b) | *a* contains the same elements | 3.2 | + | ` | as *b*, regardless of their | | + | | order. | | +---------------------------------------+--------------------------------+--------------+