summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-04-10 04:37:09 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-04-10 04:37:09 (GMT)
commit3b2625ff82696e01bdec1c9e1bc51369f24bf878 (patch)
tree0db081ed6419e75f8c813e408273840d843b0247
parent3c1ff5c766191389a05153370f5217c1b71bdc08 (diff)
downloadcpython-3b2625ff82696e01bdec1c9e1bc51369f24bf878.zip
cpython-3b2625ff82696e01bdec1c9e1bc51369f24bf878.tar.gz
cpython-3b2625ff82696e01bdec1c9e1bc51369f24bf878.tar.bz2
document all the valid encoding values
-rw-r--r--Doc/lib/libmimetools.tex5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/lib/libmimetools.tex b/Doc/lib/libmimetools.tex
index ba12d53..28efec0 100644
--- a/Doc/lib/libmimetools.tex
+++ b/Doc/lib/libmimetools.tex
@@ -29,7 +29,10 @@ part boundary. The string has the form
Read data encoded using the allowed MIME \var{encoding} from open file
object \var{input} and write the decoded data to open file object
\var{output}. Valid values for \var{encoding} include
-\code{'base64'}, \code{'quoted-printable'} and \code{'uuencode'}.
+\code{'base64'}, \code{'quoted-printable'}, \code{'uuencode'},
+\code{'x-uuencode'}, \code{'uue'}, \code{'x-uue'}, \code{'7bit'}, and
+\code{'8bit'}. Decoding messages encoded in \code{'7bit'} or \code{'8bit'}
+has no effect. The input is simply copied to the output.
\end{funcdesc}
\begin{funcdesc}{encode}{input, output, encoding}