diff options
author | Matthew Hughes <34972397+matthewhughes934@users.noreply.github.com> | 2022-11-28 18:08:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 18:08:08 (GMT) |
commit | ca3e611b1f620eabb657ef08a95d5f5f554ea773 (patch) | |
tree | 37ce68fc3d04c267b54ebd2cfdd68ff8cae7fa00 | |
parent | 7bae15cf37239d4d345e09cc318bd82d03ec30cd (diff) | |
download | cpython-ca3e611b1f620eabb657ef08a95d5f5f554ea773.zip cpython-ca3e611b1f620eabb657ef08a95d5f5f554ea773.tar.gz cpython-ca3e611b1f620eabb657ef08a95d5f5f554ea773.tar.bz2 |
`fnmatch` docs: link to `fnmatch.filter()`, not `builtins.filter()` (#99819)
-rw-r--r-- | Doc/library/fnmatch.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst index 9163da5..46bf0fc 100644 --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -48,7 +48,7 @@ patterns. Also note that :func:`functools.lru_cache` with the *maxsize* of 32768 is used to cache the compiled regex patterns in the following functions: :func:`fnmatch`, -:func:`fnmatchcase`, :func:`filter`. +:func:`fnmatchcase`, :func:`.filter`. .. function:: fnmatch(filename, pattern) |