diff options
author | Fred Drake <fdrake@acm.org> | 1999-03-16 16:40:01 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-03-16 16:40:01 (GMT) |
commit | 8d2c0c2ab4e5f5d4c930c344e0cdc7b800f6c17a (patch) | |
tree | d673b914ab07944795d4e742979f347052a800d8 /Doc/lib/libfnmatch.tex | |
parent | c43e6a2f31266a44ba11665bcc274c7bcbe16a7a (diff) | |
download | cpython-8d2c0c2ab4e5f5d4c930c344e0cdc7b800f6c17a.zip cpython-8d2c0c2ab4e5f5d4c930c344e0cdc7b800f6c17a.tar.gz cpython-8d2c0c2ab4e5f5d4c930c344e0cdc7b800f6c17a.tar.bz2 |
Fixed minor nits, added index entries to make these easier to find for people
not familiar with Unix terminology.
Diffstat (limited to 'Doc/lib/libfnmatch.tex')
-rw-r--r-- | Doc/lib/libfnmatch.tex | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Doc/lib/libfnmatch.tex b/Doc/lib/libfnmatch.tex index 78d0318..6557b61 100644 --- a/Doc/lib/libfnmatch.tex +++ b/Doc/lib/libfnmatch.tex @@ -1,14 +1,15 @@ \section{\module{fnmatch} --- - \UNIX{} shell style pathname pattern matching.} -\declaremodule{standard}{fnmatch} + \UNIX{} style filename pattern matching} -\modulesynopsis{\UNIX{} shell style pathname pattern matching.} +\declaremodule{standard}{fnmatch} +\modulesynopsis{\UNIX{} shell style filename pattern matching.} This module provides support for \UNIX{} shell-style wildcards, which are \emph{not} the same as regular expressions (which are documented -in the \module{re}\refstmodindex{re} module). The special characters -used in shell-style wildcards are: +in the \refmodule{re}\refstmodindex{re} module). The special +characters used in shell-style wildcards are: +\index{filenames!wildcard expansion} \begin{list}{}{\leftmargin 0.5in \labelwidth 0.45in} \item[\code{*}] matches everything @@ -38,6 +39,7 @@ Test whether \var{filename} matches \var{pattern}, returning true or false; the comparision is case-sensitive. \end{funcdesc} + \begin{seealso} -\seemodule{glob}{Shell-style path expansion} + \seemodule{glob}{Shell-style path expansion} \end{seealso} |