diff options
author | Fred Drake <fdrake@acm.org> | 2005-03-03 17:24:20 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2005-03-03 17:24:20 (GMT) |
commit | acfb5bdf150f47bac9a1baf9913f50919f7958d1 (patch) | |
tree | 9b83c63834e746393e25fcf3c1acf45b092d318d /Doc/lib/libuu.tex | |
parent | 2a06df625837867f8595de7bd334f401f6ab2a85 (diff) | |
download | cpython-acfb5bdf150f47bac9a1baf9913f50919f7958d1.zip cpython-acfb5bdf150f47bac9a1baf9913f50919f7958d1.tar.gz cpython-acfb5bdf150f47bac9a1baf9913f50919f7958d1.tar.bz2 |
minor edits:
- function names marked with \function should include parentheses
- "standard error" instead of "stderr" for text
- a boolean parameter takes true or false values, not just True or False
Diffstat (limited to 'Doc/lib/libuu.tex')
-rw-r--r-- | Doc/lib/libuu.tex | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/lib/libuu.tex b/Doc/lib/libuu.tex index 9adb4cf..7e546a0 100644 --- a/Doc/lib/libuu.tex +++ b/Doc/lib/libuu.tex @@ -39,9 +39,10 @@ The \module{uu} module defines the following functions: the uuencode header. However, if the file specified in the header already exists, a \exception{uu.Error} is raised. - \function{decode} may print a warning to stderr if the input was produced - by an incorrect uuencoder and Python could recover from that error. - Setting \var{quiet} to True silences this warning. + \function{decode()} may print a warning to standard error if the + input was produced by an incorrect uuencoder and Python could + recover from that error. Setting \var{quiet} to a true value + silences this warning. \end{funcdesc} \begin{excclassdesc}{Error}{} |