diff options
author | csabella <cheryl.sabella@gmail.com> | 2017-06-10 04:42:11 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-06-10 04:42:11 (GMT) |
commit | e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3 (patch) | |
tree | 3d1f3fdd85a0fd9a98a39a4fb2b3b0bf36e00b61 /Doc/library/fnmatch.rst | |
parent | a608d2d5a7f1aabe9bcbfc220135c5e126189390 (diff) | |
download | cpython-e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3.zip cpython-e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3.tar.gz cpython-e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3.tar.bz2 |
bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535)
Mention that fnmatchcase does not call normcase, and fnmatch does.
Diffstat (limited to 'Doc/library/fnmatch.rst')
-rw-r--r-- | Doc/library/fnmatch.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst index c03a9d3..634c26e 100644 --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -43,9 +43,8 @@ patterns. .. function:: fnmatch(filename, pattern) Test whether the *filename* string matches the *pattern* string, returning - :const:`True` or :const:`False`. If the operating system is case-insensitive, - then both parameters will be normalized to all lower- or upper-case before - the comparison is performed. :func:`fnmatchcase` can be used to perform a + :const:`True` or :const:`False`. Both parameters are case-normalized + using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to perform a case-sensitive comparison, regardless of whether that's standard for the operating system. @@ -63,7 +62,8 @@ patterns. .. function:: fnmatchcase(filename, pattern) Test whether *filename* matches *pattern*, returning :const:`True` or - :const:`False`; the comparison is case-sensitive. + :const:`False`; the comparison is case-sensitive and does not apply + :func:`os.path.normcase`. .. function:: filter(names, pattern) |