mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fixed minor nits, added index entries to make these easier to find for people
not familiar with Unix terminology.
This commit is contained in:
parent
c43e6a2f31
commit
8d2c0c2ab4
2 changed files with 17 additions and 9 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue