Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45c9df6

Browse files
committed
Changed some \verb\...\ markup to the more common \code{...}. \verb\...\ is
rarely needed and should be avoided where possible since it doesn't behave well with some processing tools (like partparse.py).
1 parent d499004 commit 45c9df6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/lib/libglob.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ \section{Standard Module \sectcode{glob}}
55

66
The \code{glob} module finds all the pathnames matching a specified
77
pattern according to the rules used by the \UNIX{} shell. No tilde
8-
expansion is done, but \verb\*\, \verb\?\, and character ranges
9-
expressed with \verb\[]\ will be correctly matched. This is done by
8+
expansion is done, but \code{*}, \code{?}, and character ranges
9+
expressed with \code{[]} will be correctly matched. This is done by
1010
using the \code{os.listdir()} and \code{fnmatch.fnmatch()} functions
1111
in concert, and not by actually invoking a subshell. (For tilde and
1212
shell variable expansion, use \code{os.path.expanduser(}) and

Doc/libglob.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ \section{Standard Module \sectcode{glob}}
55

66
The \code{glob} module finds all the pathnames matching a specified
77
pattern according to the rules used by the \UNIX{} shell. No tilde
8-
expansion is done, but \verb\*\, \verb\?\, and character ranges
9-
expressed with \verb\[]\ will be correctly matched. This is done by
8+
expansion is done, but \code{*}, \code{?}, and character ranges
9+
expressed with \code{[]} will be correctly matched. This is done by
1010
using the \code{os.listdir()} and \code{fnmatch.fnmatch()} functions
1111
in concert, and not by actually invoking a subshell. (For tilde and
1212
shell variable expansion, use \code{os.path.expanduser(}) and

0 commit comments

Comments
 (0)