summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-06-16 08:14:04 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-06-16 08:14:04 (GMT)
commit918f2c722a3789d683e62ad6e49dbf632f900c71 (patch)
tree7ebf7f2104749f1ffb07cdee447d3cdfe3d129d1 /Doc/lib
parent83c9edc05c1d237c03fd273cb337157084a910af (diff)
downloadcpython-918f2c722a3789d683e62ad6e49dbf632f900c71.zip
cpython-918f2c722a3789d683e62ad6e49dbf632f900c71.tar.gz
cpython-918f2c722a3789d683e62ad6e49dbf632f900c71.tar.bz2
Document that filter is added in 2.2.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libfnmatch.tex1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/lib/libfnmatch.tex b/Doc/lib/libfnmatch.tex
index 888580a6..8ef0fee 100644
--- a/Doc/lib/libfnmatch.tex
+++ b/Doc/lib/libfnmatch.tex
@@ -47,6 +47,7 @@ false; the comparison is case-sensitive.
Return the subset of the list of \var{names} that match \var{pattern}.
It is the same as \code{[n for n in names if fnmatch(n, pattern)]}, but
implemented more efficiently.
+\versionadded{2.2}
\end{funcdesc}
\begin{seealso}