]> granicus.if.org Git - python/commitdiff
Fix some glaring markup consistency problems (presentation was
authorFred Drake <fdrake@acm.org>
Fri, 23 Apr 1999 15:41:53 +0000 (15:41 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 23 Apr 1999 15:41:53 +0000 (15:41 +0000)
broken).

Added a "See also" section.

Doc/lib/libbinhex.tex

index a3e5f9af00f3fb8e5495ed0cd2b4153e25305e18..e181798389c9c9f7159c39504a900252dfd8e282 100644 (file)
@@ -15,18 +15,25 @@ The \module{binhex} module defines the following functions:
 \begin{funcdesc}{binhex}{input, output}
 Convert a binary file with filename \var{input} to binhex file
 \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}
-method).
+file-like object (any object supporting a \method{write()} and
+\method{close()} method).
 \end{funcdesc}
 
 \begin{funcdesc}{hexbin}{input\optional{, output}}
 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
-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.
 \end{funcdesc}
 
+
+\begin{seealso}
+  \seemodule{binascii}{support module containing \ASCII{}-to-binary
+                       and binary-to-\ASCII{} conversions}
+\end{seealso}
+
+
 \subsection{Notes \label{binhex-notes}}
 
 There is an alternative, more powerful interface to the coder and