From: Gergely Elias Date: Sat, 19 Jul 2025 09:51:11 +0000 (+0200) Subject: gh-74598: document that `fnmatch.filterfalse` is affected by cache limitation (#136781) X-Git-Tag: v3.15.0a1~942 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=263e451c4114ac98add1f1e8aa9ee030e054bdfd;p=thirdparty%2FPython%2Fcpython.git gh-74598: document that `fnmatch.filterfalse` is affected by cache limitation (#136781) --- diff --git a/Doc/library/fnmatch.rst b/Doc/library/fnmatch.rst index 12e61bc36f5d..ee654b7a83e2 100644 --- a/Doc/library/fnmatch.rst +++ b/Doc/library/fnmatch.rst @@ -53,7 +53,7 @@ a :class:`!str` filename, and vice-versa. Finally, note that :func:`functools.lru_cache` with a *maxsize* of 32768 is used to cache the (typed) compiled regex patterns in the following -functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`. +functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`, :func:`.filterfalse`. .. function:: fnmatch(name, pat)