diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-18 00:26:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 00:26:12 (GMT) |
commit | 17f5c5cad3bb9bfb6eecbe47ecc35ee3aafc54a9 (patch) | |
tree | 80183d184a2b7ede127fdb689c04c7c9987266bb /Doc | |
parent | 00ee14e814d35587ac55f89c7de871a01360c876 (diff) | |
download | cpython-17f5c5cad3bb9bfb6eecbe47ecc35ee3aafc54a9.zip cpython-17f5c5cad3bb9bfb6eecbe47ecc35ee3aafc54a9.tar.gz cpython-17f5c5cad3bb9bfb6eecbe47ecc35ee3aafc54a9.tar.bz2 |
[docs] Add missing word "any" in unittest -k cmdline option description (GH-29571) (GH-29604)
(cherry picked from commit abc0d754c3853c6e69ec3718505871e7e42ec93d)
Co-authored-by: ch33zer <ch33zer@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 392cd24..9080757 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 |