diff options
author | ch33zer <ch33zer@gmail.com> | 2021-11-17 23:25:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 23:25:53 (GMT) |
commit | abc0d754c3853c6e69ec3718505871e7e42ec93d (patch) | |
tree | c97df7c7661ff8103333081ae896627389557a0a /Doc/library/unittest.rst | |
parent | 5d90c467c02ffefdb13c1abc83a171db1a99ffad (diff) | |
download | cpython-abc0d754c3853c6e69ec3718505871e7e42ec93d.zip cpython-abc0d754c3853c6e69ec3718505871e7e42ec93d.tar.gz cpython-abc0d754c3853c6e69ec3718505871e7e42ec93d.tar.bz2 |
[docs] Add missing word "any" in unittest -k cmdline option description (GH-29571)
Diffstat (limited to 'Doc/library/unittest.rst')
-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 a6f9046..bf7a1e8 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -227,7 +227,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 |