Adjust markup to match current conventions, and make it formattable.

This commit is contained in:
Fred Drake 1998-12-22 18:24:13 +00:00
parent 768ac6b804
commit 1189fa98eb
2 changed files with 50 additions and 41 deletions

View file

@ -1,30 +1,35 @@
% Module and documentation by Eric S. Raymond, 21 Dec 1998 % Module and documentation by Eric S. Raymond, 21 Dec 1998
\section{Standard Module \module{netrc}}
\stmodindex{netrc}
\label{module-netrc}
The \code{netrc} class parses and encapsulates the netrc file format \section{\module{netrc} ---
used by Unix's ftp(1) and other FTP clientd \file{.netrc} processing}
\declaremodule{standard}{netrc}
\moduleauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
\sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
The \class{netrc} class parses and encapsulates the netrc file format
used by the \UNIX{} \program{ftp} program and other FTP clients.
\begin{classdesc}{netrc}{\optional{file}} \begin{classdesc}{netrc}{\optional{file}}
A \class{netrc} instance or subclass instance enapsulates data from A \class{netrc} instance or subclass instance enapsulates data from
a netrc file. The initialization argument, if present, specifies the file a netrc file. The initialization argument, if present, specifies the
to parse. If no argument is given, the file .netrc in the user's home file to parse. If no argument is given, the file \file{.netrc} in the
directory will be read. Parse errors will throw a SyntaxError user's home directory will be read. Parse errors will raise
exception with associated diagnostic information including the file \exception{SyntaxError} with diagnostic information including the file
name, line number, and terminating token. name, line number, and terminating token.
\end{classdesc} \end{classdesc}
\subsection{netrc Objects} \subsection{netrc Objects \label{netrc-objects}}
\label{netrc-objects}
A \class{netrc} instance has the following methods: A \class{netrc} instance has the following methods:
\begin{methoddesc}{authenticators}{} \begin{methoddesc}{authenticators}{host}
Return a 3-tuple (login, account, password) of authenticators for the Return a 3-tuple \code{(\var{login}, \var{account}, \var{password})}
given host. If the netrc file did not contain an entry for the given of authenticators for \var{host}. If the netrc file did not
host, return the tuple associated with the `default' entry. If contain an entry for the given host, return the tuple associated with
neither matching host nor default entry is available, return None. the `default' entry. If neither matching host nor default entry is
available, return \code{None}.
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{__repr__}{host} \begin{methoddesc}{__repr__}{host}
@ -35,13 +40,11 @@ Dump the class data as a string in the format of a netrc file.
Instances of \class{netrc} have public instance variables: Instances of \class{netrc} have public instance variables:
\begin{memberdesc}{hosts} \begin{memberdesc}{hosts}
Dictionmary mapping host names to login/account/password tuples. The Dictionmary mapping host names to \code{(\var{login}, \var{account},
`default' entry, if any, is represented as a pseudo-host by that name. \var{password})} tuples. The `default' entry, if any, is represented
as a pseudo-host by that name.
\end{memberdesc} \end{memberdesc}
\begin{memberdesc}{macros} \begin{memberdesc}{macros}
Dictionary mapping macro names to string lists. Dictionary mapping macro names to string lists.
\end{memberdesc} \end{memberdesc}

View file

@ -1,31 +1,36 @@
% Module and documentation by Eric S. Raymond, 21 Dec 1998 % Module and documentation by Eric S. Raymond, 21 Dec 1998
\section{Standard Module \module{shlex}}
\stmodindex{shlex}
\label{module-shlex}
The \code{shlex} class makes it easy to write lexical analyzers for \section{\module{shlex} ---
simple syntaxes resembling that of the Unix shell. This will often Simple lexical analysis}
be useful for writing minilanguages, e.g. in run control files for
\declaremodule{standard}{shlex}
\moduleauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
\sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
The \class{shlex} class makes it easy to write lexical analyzers for
simple syntaxes resembling that of the \UNIX{} shell. This will often
be useful for writing minilanguages, e.g.\ in run control files for
Python applications. Python applications.
\begin{classdesc}{shlex}{\optional{stream}} \begin{classdesc}{shlex}{\optional{stream}}
A \class{shlex} instance or subclass instance is a lexical analyzer A \class{shlex} instance or subclass instance is a lexical analyzer
object. The initialization argument, if present, specifies where to object. The initialization argument, if present, specifies where to
read characters from. It must be a file- or stream-like object with read characters from. It must be a file- or stream-like object with
\method{read} and \method{readline} methods. If no argument is given, \method{read()} and \method{readline()} methods. If no argument is given,
input will be taken from sys.stdin. input will be taken from \code{sys.stdin}.
\end{classdesc} \end{classdesc}
\subsection{shlex Objects} \subsection{shlex Objects \label{shlex-objects}}
\label{shlex-objects}
A \class{shlex} instance has the following methods: A \class{shlex} instance has the following methods:
\begin{methoddesc}{get_token}{} \begin{methoddesc}{get_token}{}
Return a token. If tokens have been stacked using \method{push_token}, Return a token. If tokens have been stacked using
pop a token off the stack. Otherwise, read one from the input stream. \method{push_token()}, pop a token off the stack. Otherwise, read one
If reading encounters an immediate end-of-file, '' is returned. from the input stream. If reading encounters an immediate
end-of-file, an empty string is returned.
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{push_token}{str} \begin{methoddesc}{push_token}{str}
@ -39,17 +44,18 @@ for debugging:
\begin{memberdesc}{commenters} \begin{memberdesc}{commenters}
The string of characters that are recognized as comment beginners. The string of characters that are recognized as comment beginners.
All characters from the comment beginner to end of line are ignored. All characters from the comment beginner to end of line are ignored.
Includes just '#' by default. Includes just \character{\#} by default.
\end{memberdesc} \end{memberdesc}
\begin{memberdesc}{wordchars} \begin{memberdesc}{wordchars}
The string of characters that will accumulate into multi-character The string of characters that will accumulate into multi-character
tokens. By default, includes all ASCII alphanumerics and underscore. tokens. By default, includes all \ASCII{} alphanumerics and
underscore.
\end{memberdesc} \end{memberdesc}
\begin{memberdesc}{whitespace} \begin{memberdesc}{whitespace}
Characters that will be considered whitespace and skipped. Whitespace Characters that will be considered whitespace and skipped. Whitespace
bounds tokens. By default, includes space and tab and linefeed and bounds tokens. By default, includes space, tab, linefeed and
carriage-return. carriage-return.
\end{memberdesc} \end{memberdesc}
@ -57,14 +63,14 @@ carriage-return.
Characters that will be considered string quotes. The token Characters that will be considered string quotes. The token
accumulates until the same quote is encountered again (thus, different accumulates until the same quote is encountered again (thus, different
quote types protect each other as in the shall.) By default, includes quote types protect each other as in the shall.) By default, includes
ASCII single and double quotes. \ASCII{} single and double quotes.
\end{memberdesc} \end{memberdesc}
Note that any character not declared to be a word character, Note that any character not declared to be a word character,
whitespace, or a quote will be returned as a single-character token. whitespace, or a quote will be returned as a single-character token.
Quote and comment characters are not recognized within words. Thus, Quote and comment characters are not recognized within words. Thus,
the bare words ``ain't'' and ``ain#t'' would be returned as single the bare words \samp{ain't} and \samp{ain\#t} would be returned as single
tokens by the default parser. tokens by the default parser.
\begin{memberdesc}{lineno} \begin{memberdesc}{lineno}
@ -72,6 +78,6 @@ Source line number (count of newlines seen so far plus one).
\end{memberdesc} \end{memberdesc}
\begin{memberdesc}{token} \begin{memberdesc}{token}
The token buffer. It may be useful to examine this when catching exceptions. The token buffer. It may be useful to examine this when catching
exceptions.
\end{memberdesc} \end{memberdesc}