https://github.com/python/cpython/commit/94d42bf5c2b95417d6187a57fef94570ba017e33
commit: 94d42bf5c2b95417d6187a57fef94570ba017e33
branch: main
author: Kliment Lamonov <[email protected]>
committer: ericvsmith <[email protected]>
date: 2026-04-14T19:39:16-04:00
summary:

gh-148186: Improve `assertCountEqual` description in docs. (#148463)

files:
M Doc/library/unittest.rst

diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index c7682c2274633b..6e0df0648fb8bf 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1223,9 +1223,9 @@ Test cases
    | :meth:`assertNotRegex(s, r)           | ``not r.search(s)``            | 
3.2          |
    | <TestCase.assertNotRegex>`            |                                |  
            |
    
+---------------------------------------+--------------------------------+--------------+
-   | :meth:`assertCountEqual(a, b)         | *a* and *b* have the same      | 
3.2          |
-   | <TestCase.assertCountEqual>`          | elements in the same number,   |  
            |
-   |                                       | regardless of their order.     |  
            |
+   | :meth:`assertCountEqual(a, b)         | *a* contains the same elements | 
3.2          |
+   | <TestCase.assertCountEqual>`          | as *b*, regardless of their    |  
            |
+   |                                       | order.                         |  
            |
    
+---------------------------------------+--------------------------------+--------------+
    | :meth:`assertStartsWith(a, b)         | ``a.startswith(b)``            | 
3.14         |
    | <TestCase.assertStartsWith>`          |                                |  
            |

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to