summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-08-17 20:01:06 (GMT)
committerBarry Warsaw <barry@python.org>2001-08-17 20:01:06 (GMT)
commitdbfe5e85076aaced56313fbc61642426619e4913 (patch)
tree990db631d52e85cacc10e601a1bc9eae70966537 /Doc/lib
parentd1795705de6f92020d14291d9842793d54c9cf54 (diff)
downloadcpython-dbfe5e85076aaced56313fbc61642426619e4913.zip
cpython-dbfe5e85076aaced56313fbc61642426619e4913.tar.gz
cpython-dbfe5e85076aaced56313fbc61642426619e4913.tar.bz2
Document that uu.decode() will always raise a uu.Error if out_file
isn't given, and the file in the uu header already exists. Also add a description of the uu.Error exception class.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libuu.tex27
1 files changed, 18 insertions, 9 deletions
diff --git a/Doc/lib/libuu.tex b/Doc/lib/libuu.tex
index ea4a9e4..e938c4f 100644
--- a/Doc/lib/libuu.tex
+++ b/Doc/lib/libuu.tex
@@ -7,7 +7,7 @@
This module encodes and decodes files in uuencode format, allowing
-arbitrary binary data to be transferred over ascii-only connections.
+arbitrary binary data to be transferred over ASCII-only connections.
Wherever a file argument is expected, the methods accept a file-like
object. For backwards compatibility, a string containing a pathname
is also accepted, and the corresponding file will be opened for
@@ -24,19 +24,28 @@ Jansen.
The \module{uu} module defines the following functions:
\begin{funcdesc}{encode}{in_file, out_file\optional{, name\optional{, 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
-are taken from \var{in_file}, or \code{'-'} and \code{0666} respectively.
+ 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 are taken from \var{in_file}, or \code{'-'} and \code{0666}
+ respectively.
\end{funcdesc}
\begin{funcdesc}{decode}{in_file\optional{, out_file\optional{, mode}}}
-This call decodes uuencoded file \var{in_file} placing the result on
-file \var{out_file}. If \var{out_file} is a pathname, \var{mode} is
-used to set the permission bits if the file must be created. Defaults
-for \var{out_file} and \var{mode} are taken from the uuencode header.
+ This call decodes uuencoded file \var{in_file} placing the result on
+ file \var{out_file}. If \var{out_file} is a pathname, \var{mode} is
+ used to set the permission bits if the file must be
+ created. Defaults for \var{out_file} and \var{mode} are taken from
+ the uuencode header. However, if the file specified in the header
+ already exists, a \exception{uu.Error} is raised.
\end{funcdesc}
+\begin{excclassdesc}{Error}{}
+ Subclass of \exception{Exception}, this can be raised by
+ \function{uu.decode()} under various situations, such as described
+ above, but also including a badly formated header, or truncated
+ input file.
+\end{excclassdesc}
\begin{seealso}
\seemodule{binascii}{Support module containing \ASCII-to-binary