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/libmimetools.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/libmimetools.tex')
-rw-r--r-- | Doc/lib/libmimetools.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libmimetools.tex b/Doc/lib/libmimetools.tex index 0ae3af5..0d4e40f 100644 --- a/Doc/lib/libmimetools.tex +++ b/Doc/lib/libmimetools.tex @@ -30,18 +30,18 @@ object \var{input} and write the decoded data to open file object \code{'base64'}, \code{'quoted-printable'} and \code{'uuencode'}. \end{funcdesc} -\begin{funcdesc}{encode}{input\, output\, encoding} +\begin{funcdesc}{encode}{input, output, encoding} Read data from open file object \var{input} and write it encoded using the allowed MIME \var{encoding} to open file object \var{output}. Valid values for \var{encoding} are the same as for \method{decode()}. \end{funcdesc} -\begin{funcdesc}{copyliteral}{input\, output} +\begin{funcdesc}{copyliteral}{input, output} Read lines until \EOF{} from open file \var{input} and write them to open file \var{output}. \end{funcdesc} -\begin{funcdesc}{copybinary}{input\, output} +\begin{funcdesc}{copybinary}{input, output} Read blocks until \EOF{} from open file \var{input} and write them to open file \var{output}. The block size is currently fixed at 8192. \end{funcdesc} |