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

Skip to content

Commit 184e836

Browse files
committed
Added module references; minor grammatical fixes.
All suggested by Eric Raymond.
1 parent 9ade7e0 commit 184e836

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

Doc/lib/libcfgparser.tex

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ \section{\module{ConfigParser} ---
3939
\var{defaults} is given, it is initialized into the dictionairy of
4040
intrinsic defaults. They keys must be strings, and the values must be
4141
appropriate for the \samp{\%()s} string interpolation. Note that
42-
\var{__name__} is always an intrinsic default; it's value is the
42+
\var{__name__} is always an intrinsic default; its value is the
4343
section name.
4444
\end{classdesc}
4545

@@ -70,6 +70,12 @@ \section{\module{ConfigParser} ---
7070
\end{excdesc}
7171

7272

73+
\begin{seealso}
74+
\seemodule{shlex}{Support for a creating \UNIX{} shell-like
75+
minilanguages which can be used as an alternate format
76+
for application configuration files.}
77+
\end{seealso}
78+
7379
\subsection{ConfigParser Objects \label{ConfigParser-objects}}
7480

7581
\class{ConfigParser} instances have the following methods:

Doc/lib/libftplib.tex

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ \section{\module{ftplib} ---
7070

7171

7272
\begin{seealso}
73+
\seemodule{netrc}{Parser for the \file{.netrc} file format. The file
74+
\file{.netrc} is typically used by FTP clients to
75+
load user authentication information before prompting
76+
the user.}
7377
\seetext{The file \file{Tools/scripts/ftpmirror.py}\index{ftpmirror.py}
7478
in the Python source distribution is a script that can mirror
7579
FTP sites, or portions thereof, using the \module{ftplib} module.

Doc/lib/libshlex.tex

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
% Module and documentation by Eric S. Raymond, 21 Dec 1998
22

33
\section{\module{shlex} ---
4-
Simple lexical analysis.}
4+
Simple lexical analysis}
55

66
\declaremodule{standard}{shlex}
77
\modulesynopsis{Simple lexical analysis for \UNIX{} shell-like languages.}
@@ -21,9 +21,15 @@ \section{\module{shlex} ---
2121
read characters from. It must be a file- or stream-like object with
2222
\method{read()} and \method{readline()} methods. If no argument is given,
2323
input will be taken from \code{sys.stdin}.
24-
2524
\end{classdesc}
2625

26+
27+
\begin{seealso}
28+
\seemodule{ConfigParser}{Parser for configuration files similar to the
29+
Windows \file{.ini} files.}
30+
\end{seealso}
31+
32+
2733
\subsection{shlex Objects \label{shlex-objects}}
2834

2935
A \class{shlex} instance has the following methods:
@@ -64,7 +70,7 @@ \subsection{shlex Objects \label{shlex-objects}}
6470
\begin{memberdesc}{quotes}
6571
Characters that will be considered string quotes. The token
6672
accumulates until the same quote is encountered again (thus, different
67-
quote types protect each other as in the shall.) By default, includes
73+
quote types protect each other as in the shell.) By default, includes
6874
\ASCII{} single and double quotes.
6975
\end{memberdesc}
7076

0 commit comments

Comments
 (0)