diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/lib/libbinhex.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/lib/libbinhex.tex')
-rw-r--r-- | Doc/lib/libbinhex.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libbinhex.tex b/Doc/lib/libbinhex.tex index aae5074..560b401 100644 --- a/Doc/lib/libbinhex.tex +++ b/Doc/lib/libbinhex.tex @@ -11,14 +11,14 @@ The \code{binhex} module defines the following functions: \setindexsubitem{(in module binhex)} -\begin{funcdesc}{binhex}{input\, output} +\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). \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 file-like object supporting \var{read} and \var{close} methods. The resulting file is written to a file named \var{output}, unless the |