]> granicus.if.org Git - python/commitdiff
Added docs for glob
authorGuido van Rossum <guido@python.org>
Tue, 25 Mar 1997 22:07:53 +0000 (22:07 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 25 Mar 1997 22:07:53 +0000 (22:07 +0000)
Doc/Makefile
Doc/lib/liballos.tex
Doc/lib/libglob.tex [new file with mode: 0644]
Doc/lib/libundoc.tex
Doc/liballos.tex
Doc/libglob.tex [new file with mode: 0644]
Doc/libundoc.tex

index db631576b84736dff8732aff4abfdb3cb45da9fe..a0eebc635eb3c80ad63a715d1e27eebe657963ee 100644 (file)
@@ -113,7 +113,7 @@ LIBFILES = lib.tex \
     libxdrlib.tex libimghdr.tex \
     librestricted.tex librexec.tex libbastion.tex \
     libformatter.tex liboperator.tex libsoundex.tex libresource.tex \
-    libstat.tex libstrio.tex libundoc.tex libmailcap.tex
+    libstat.tex libstrio.tex libundoc.tex libmailcap.tex libglob.tex
 
 # Library document
 lib.dvi: $(LIBFILES)
index c167109cb6fafbbc55280530e00f275b3d03ccb5..5cf7f9492c62a619dac640936223a3a95b71a526 100644 (file)
@@ -23,4 +23,7 @@ systems as well.  Here's an overview:
 \item[errno]
 --- Standard errno system symbols.
 
+\item[glob]
+--- Unix shell style pathname pattern expansion.
+
 \end{description}
diff --git a/Doc/lib/libglob.tex b/Doc/lib/libglob.tex
new file mode 100644 (file)
index 0000000..142afd8
--- /dev/null
@@ -0,0 +1,35 @@
+\section{Standard Module \sectcode{glob}}
+\stmodindex{glob}
+\renewcommand{\indexsubitem}{(in module glob)}
+
+The \code{glob} module finds all the pathnames matching a specified
+pattern according to the rules used by the \UNIX{} shell.  No tilde
+expansion is done, but \verb\*\, \verb\?\, and character ranges
+expressed with \verb\[]\ will be correctly matched.  This is done by
+using the \code{os.listdir()} and \code{fnmatch.fnmatch()} functions
+in concert, and not by actually invoking a subshell.  (For tilde and
+shell variable expansion, use \code{os.path.expanduser(}) and
+\code{os.path.expandvars()}.)
+
+\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/Python1.4/Makefile}) or relative (like
+\file{../../Tools/*.gif}), and can contain shell-style wildcards.
+\end{funcdesc}
+
+For example, consider a directory containing only the following files:
+\file{1.gif}, \file{2.txt}, and \file{card.gif}.  \code{glob.glob()}
+will produce the following results.  Notice how any leading components
+of the path are preserved.
+
+\begin{verbatim}
+>>> import glob
+>>> glob.glob('./[0-9].*')
+['./1.gif', './2.txt']
+>>> glob.glob('*.gif')
+['1.gif', 'card.gif']
+>>> glob.glob('?.gif')
+['1.gif']
+\end{verbatim}
index bcd52a9faef5779f7074e767d75d5bc71b2ce5c4..c2ad10227f27d0c78e3a670c0d219ace2d91a9fd 100644 (file)
@@ -53,8 +53,6 @@ quopri.py -- Conversions to/from quoted-printable transport encoding
 
 Some of these are very old and/or not very robust; marked with ``hmm''.
 
-glob.py -- filename globbing (high level interface)
-
 fnmatch.py -- filename globbing (low level interface)
 
 calendar.py -- Calendar printing functions
index c167109cb6fafbbc55280530e00f275b3d03ccb5..5cf7f9492c62a619dac640936223a3a95b71a526 100644 (file)
@@ -23,4 +23,7 @@ systems as well.  Here's an overview:
 \item[errno]
 --- Standard errno system symbols.
 
+\item[glob]
+--- Unix shell style pathname pattern expansion.
+
 \end{description}
diff --git a/Doc/libglob.tex b/Doc/libglob.tex
new file mode 100644 (file)
index 0000000..142afd8
--- /dev/null
@@ -0,0 +1,35 @@
+\section{Standard Module \sectcode{glob}}
+\stmodindex{glob}
+\renewcommand{\indexsubitem}{(in module glob)}
+
+The \code{glob} module finds all the pathnames matching a specified
+pattern according to the rules used by the \UNIX{} shell.  No tilde
+expansion is done, but \verb\*\, \verb\?\, and character ranges
+expressed with \verb\[]\ will be correctly matched.  This is done by
+using the \code{os.listdir()} and \code{fnmatch.fnmatch()} functions
+in concert, and not by actually invoking a subshell.  (For tilde and
+shell variable expansion, use \code{os.path.expanduser(}) and
+\code{os.path.expandvars()}.)
+
+\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/Python1.4/Makefile}) or relative (like
+\file{../../Tools/*.gif}), and can contain shell-style wildcards.
+\end{funcdesc}
+
+For example, consider a directory containing only the following files:
+\file{1.gif}, \file{2.txt}, and \file{card.gif}.  \code{glob.glob()}
+will produce the following results.  Notice how any leading components
+of the path are preserved.
+
+\begin{verbatim}
+>>> import glob
+>>> glob.glob('./[0-9].*')
+['./1.gif', './2.txt']
+>>> glob.glob('*.gif')
+['1.gif', 'card.gif']
+>>> glob.glob('?.gif')
+['1.gif']
+\end{verbatim}
index bcd52a9faef5779f7074e767d75d5bc71b2ce5c4..c2ad10227f27d0c78e3a670c0d219ace2d91a9fd 100644 (file)
@@ -53,8 +53,6 @@ quopri.py -- Conversions to/from quoted-printable transport encoding
 
 Some of these are very old and/or not very robust; marked with ``hmm''.
 
-glob.py -- filename globbing (high level interface)
-
 fnmatch.py -- filename globbing (low level interface)
 
 calendar.py -- Calendar printing functions