Fix some glaring markup consistency problems (presentation was

broken).

Added a "See also" section.
This commit is contained in:
Fred Drake 1999-04-23 15:41:53 +00:00
parent 10682c28b4
commit 26f7cfe9c7
1 changed files with 11 additions and 4 deletions

View File

@ -15,18 +15,25 @@ The \module{binhex} module defines the following functions:
\begin{funcdesc}{binhex}{input, output} \begin{funcdesc}{binhex}{input, output}
Convert a binary file with filename \var{input} to binhex file Convert a binary file with filename \var{input} to binhex file
\var{output}. The \var{output} parameter can either be a filename or a \var{output}. The \var{output} parameter can either be a filename or a
file-like object (any object supporting a \var{write} and \var{close} file-like object (any object supporting a \method{write()} and
method). \method{close()} method).
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{hexbin}{input\optional{, output}} \begin{funcdesc}{hexbin}{input\optional{, output}}
Decode a binhex file \var{input}. \var{input} may be a filename or a Decode a binhex file \var{input}. \var{input} may be a filename or a
file-like object supporting \var{read} and \var{close} methods. file-like object supporting \method{read()} and \method{close()} methods.
The resulting file is written to a file named \var{output}, unless the The resulting file is written to a file named \var{output}, unless the
argument is empty in which case the output filename is read from the argument is omitted in which case the output filename is read from the
binhex file. binhex file.
\end{funcdesc} \end{funcdesc}
\begin{seealso}
\seemodule{binascii}{support module containing \ASCII{}-to-binary
and binary-to-\ASCII{} conversions}
\end{seealso}
\subsection{Notes \label{binhex-notes}} \subsection{Notes \label{binhex-notes}}
There is an alternative, more powerful interface to the coder and There is an alternative, more powerful interface to the coder and