diff options
author | Barry Warsaw <barry@python.org> | 2002-10-01 15:29:09 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-10-01 15:29:09 (GMT) |
commit | dd868d32e0f1d947e40bb050a4be99892d62c4ea (patch) | |
tree | 1c08162adbd6ec03968a6ce8c2658f9adb4c1424 /Doc/lib/emailparser.tex | |
parent | 73ec98357ed11a5afb1ec403cd57089e5be39973 (diff) | |
download | cpython-dd868d32e0f1d947e40bb050a4be99892d62c4ea.zip cpython-dd868d32e0f1d947e40bb050a4be99892d62c4ea.tar.gz cpython-dd868d32e0f1d947e40bb050a4be99892d62c4ea.tar.bz2 |
nits
Diffstat (limited to 'Doc/lib/emailparser.tex')
-rw-r--r-- | Doc/lib/emailparser.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/emailparser.tex b/Doc/lib/emailparser.tex index 62a5a6f..706ecbb 100644 --- a/Doc/lib/emailparser.tex +++ b/Doc/lib/emailparser.tex @@ -135,12 +135,14 @@ Here are some notes on the parsing semantics: message object with a string payload. These objects will return \code{False} for \method{is_multipart()}. Their \method{get_payload()} method will return a string object. + \item All \mimetype{multipart} type messages will be parsed as a container message object with a list of sub-message objects for their payload. The outer container message will return \code{True} for \method{is_multipart()} and their \method{get_payload()} method will return the list of \class{Message} subparts. + \item Most messages with a content type of \mimetype{message/*} (e.g. \mimetype{message/deliver-status} and \mimetype{message/rfc822}) will also be parsed as container |