diff options
author | Guido van Rossum <guido@python.org> | 1997-08-14 14:13:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-14 14:13:01 (GMT) |
commit | fcaf26e245666f34ac77dcfdf3bee2550c8dff03 (patch) | |
tree | f845c8cb5fe06c2a8cc3e601d85e27f15ae2ccb5 | |
parent | 88bb808d7700307d37692f7e658d2d4b1582e0dc (diff) | |
download | cpython-fcaf26e245666f34ac77dcfdf3bee2550c8dff03.zip cpython-fcaf26e245666f34ac77dcfdf3bee2550c8dff03.tar.gz cpython-fcaf26e245666f34ac77dcfdf3bee2550c8dff03.tar.bz2 |
Documented mime_decode_header() and mime_encode_header().
-rw-r--r-- | Doc/lib/libmimify.tex | 8 | ||||
-rw-r--r-- | Doc/libmimify.tex | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/Doc/lib/libmimify.tex b/Doc/lib/libmimify.tex index 4ce33df..171e7d2 100644 --- a/Doc/lib/libmimify.tex +++ b/Doc/lib/libmimify.tex @@ -43,6 +43,14 @@ If the \var{decode_base64} argument is provided and tests true, any parts that are coded in the base64 encoding are decoded as well. \end{funcdesc} +\begin{funcdesc}{mime_decode_header}{line} +Return a decoded version of the encoded header line in \var{line}. +\end{funcdesc} + +\begin{funcdesc}{mime_encode_header}{line} +Return a MIME-encoded version of the header line in \var{line}. +\end{funcdesc} + \begin{datadesc}{MAXLEN} By default, a part will be encoded as quoted-printable when it contains any non-ASCII characters (i.e., characters with the 8th bit diff --git a/Doc/libmimify.tex b/Doc/libmimify.tex index 4ce33df..171e7d2 100644 --- a/Doc/libmimify.tex +++ b/Doc/libmimify.tex @@ -43,6 +43,14 @@ If the \var{decode_base64} argument is provided and tests true, any parts that are coded in the base64 encoding are decoded as well. \end{funcdesc} +\begin{funcdesc}{mime_decode_header}{line} +Return a decoded version of the encoded header line in \var{line}. +\end{funcdesc} + +\begin{funcdesc}{mime_encode_header}{line} +Return a MIME-encoded version of the header line in \var{line}. +\end{funcdesc} + \begin{datadesc}{MAXLEN} By default, a part will be encoded as quoted-printable when it contains any non-ASCII characters (i.e., characters with the 8th bit |