[Python-checkins] [docs] Add missing word "any" in unittest -k cmdline option description (GH-29571) (GH-29603)

ambv webhook-mailer at python.org
Wed Nov 17 19:25:59 EST 2021


https://github.com/python/cpython/commit/563e45875a7623fc06a0fc990099b32855082b68
commit: 563e45875a7623fc06a0fc990099b32855082b68
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-11-18T01:25:54+01:00
summary:

[docs] Add missing word "any" in unittest -k cmdline option description (GH-29571) (GH-29603)

(cherry picked from commit abc0d754c3853c6e69ec3718505871e7e42ec93d)

Co-authored-by: ch33zer <ch33zer at gmail.com>

files:
M Doc/library/unittest.rst

diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 99c2f6e029448..ae0c7d59964f1 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -223,7 +223,7 @@ Command-line options
 
    Only run test methods and classes that match the pattern or substring.
    This option may be used multiple times, in which case all test cases that
-   match of the given patterns are included.
+   match any of the given patterns are included.
 
    Patterns that contain a wildcard character (``*``) are matched against the
    test name using :meth:`fnmatch.fnmatchcase`; otherwise simple case-sensitive



More information about the Python-checkins mailing list