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/libuu.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/libuu.tex')
-rw-r--r-- | Doc/lib/libuu.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libuu.tex b/Doc/lib/libuu.tex index 87182dc..e953628 100644 --- a/Doc/lib/libuu.tex +++ b/Doc/lib/libuu.tex @@ -19,7 +19,7 @@ The \module{uu} module defines the following functions: \setindexsubitem{(in module uu)} -\begin{funcdesc}{encode}{in_file\, out_file\optional{\, name\, mode}} +\begin{funcdesc}{encode}{in_file, out_file\optional{, name, mode}} Uuencode file \var{in_file} into file \var{out_file}. The uuencoded file will have the header specifying \var{name} and \var{mode} as the defaults for the results of decoding the file. The default defaults @@ -27,7 +27,7 @@ are taken from \var{in_file}, or \code{'-'} and \code{0666} respectively. \end{funcdesc} -\begin{funcdesc}{decode}{in_file\optional{\, out_file\, mode}} +\begin{funcdesc}{decode}{in_file\optional{, out_file, mode}} This call decodes uuencoded file \var{in_file} placing the result on file \var{out_file}. If \var{out_file} is a pathname the \var{mode} is also set. Defaults for \var{out_file} and \var{mode} are taken from |