]> granicus.if.org Git - python/commitdiff
Fixed minor nits, added index entries to make these easier to find for people
authorFred Drake <fdrake@acm.org>
Tue, 16 Mar 1999 16:40:01 +0000 (16:40 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 16 Mar 1999 16:40:01 +0000 (16:40 +0000)
not familiar with Unix terminology.

Doc/lib/libfnmatch.tex
Doc/lib/libglob.tex

index 78d0318ec672965004f29812b533e7f147700513..6557b61e7a68a7291bb919ea3a643a466543d062 100644 (file)
@@ -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}
index 5ef06f3723c6a9e7a9eb8d344b922d7971d9fb69..9efc5aabdac405a964be0b7f393e74fe3fbaf2b8 100644 (file)
@@ -1,7 +1,7 @@
 \section{\module{glob} ---
-         \UNIX{} shell style pathname pattern expansion.}
-\declaremodule{standard}{glob}
+         \UNIX{} style pathname pattern expansion}
 
+\declaremodule{standard}{glob}
 \modulesynopsis{\UNIX{} shell style pathname pattern expansion.}
 
 
@@ -13,13 +13,14 @@ using the \function{os.listdir()} and \function{fnmatch.fnmatch()}
 functions in concert, and not by actually invoking a subshell.  (For
 tilde and shell variable expansion, use \function{os.path.expanduser()}
 and \function{os.path.expandvars()}.)
+\index{filenames!pathname expansion}
 
 \begin{funcdesc}{glob}{pathname}
 Returns a possibly-empty list of path names that match \var{pathname},
 which must be a string containing a path specification.
 \var{pathname} can be either absolute (like
 \file{/usr/src/Python-1.5/Makefile}) or relative (like
-\file{../../Tools/*.gif}), and can contain shell-style wildcards.
+\file{../../Tools/*/*.gif}), and can contain shell-style wildcards.
 \end{funcdesc}
 
 For example, consider a directory containing only the following files:
@@ -36,3 +37,8 @@ of the path are preserved.
 >>> glob.glob('?.gif')
 ['1.gif']
 \end{verbatim}
+
+
+\begin{seealso}
+  \seemodule{fnmatch}{Shell-style filename (not path) expansion}
+\end{seealso}