diff options
| author | Fred Drake <fdrake@acm.org> | 1998-04-03 06:14:54 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 1998-04-03 06:14:54 +0000 |
| commit | 5bfe4850cf898a1ebc03842710d383f60aa9c31e (patch) | |
| tree | b485d4ee490b2fe26a8f1c79c86911c23660b63b | |
| parent | 2cfc835b7b33bf668b66afb87e0235018d158d18 (diff) | |
| download | cpython-git-5bfe4850cf898a1ebc03842710d383f60aa9c31e.tar.gz | |
Consistency: Don't use module name when referring to functions defined
in the same module.
| -rw-r--r-- | Doc/lib/libglob.tex | 3 | ||||
| -rw-r--r-- | Doc/libglob.tex | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/Doc/lib/libglob.tex b/Doc/lib/libglob.tex index dbc6b6acc0..97d0ed5944 100644 --- a/Doc/lib/libglob.tex +++ b/Doc/lib/libglob.tex @@ -1,7 +1,6 @@ \section{Standard Module \sectcode{glob}} \label{module-glob} \stmodindex{glob} -\setindexsubitem{(in module glob)} The \module{glob} module finds all the pathnames matching a specified pattern according to the rules used by the \UNIX{} shell. No tilde @@ -21,7 +20,7 @@ which must be a string containing a path specification. \end{funcdesc} For example, consider a directory containing only the following files: -\file{1.gif}, \file{2.txt}, and \file{card.gif}. \function{glob.glob()} +\file{1.gif}, \file{2.txt}, and \file{card.gif}. \function{glob()} will produce the following results. Notice how any leading components of the path are preserved. diff --git a/Doc/libglob.tex b/Doc/libglob.tex index dbc6b6acc0..97d0ed5944 100644 --- a/Doc/libglob.tex +++ b/Doc/libglob.tex @@ -1,7 +1,6 @@ \section{Standard Module \sectcode{glob}} \label{module-glob} \stmodindex{glob} -\setindexsubitem{(in module glob)} The \module{glob} module finds all the pathnames matching a specified pattern according to the rules used by the \UNIX{} shell. No tilde @@ -21,7 +20,7 @@ which must be a string containing a path specification. \end{funcdesc} For example, consider a directory containing only the following files: -\file{1.gif}, \file{2.txt}, and \file{card.gif}. \function{glob.glob()} +\file{1.gif}, \file{2.txt}, and \file{card.gif}. \function{glob()} will produce the following results. Notice how any leading components of the path are preserved. |
