diff options
author | Guido van Rossum <guido@python.org> | 1998-06-16 22:27:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-06-16 22:27:40 (GMT) |
commit | 872948350fbb3d96189671c5bbad55cda1c9e4ff (patch) | |
tree | d7d88908fcb212028bb887cb43dae90a47be8544 /Doc/lib/librfc822.tex | |
parent | 4d4ab9245f3aaf2483daa96b87f6190b7f6774ee (diff) | |
download | cpython-872948350fbb3d96189671c5bbad55cda1c9e4ff.zip cpython-872948350fbb3d96189671c5bbad55cda1c9e4ff.tar.gz cpython-872948350fbb3d96189671c5bbad55cda1c9e4ff.tar.bz2 |
Some extra notes, and describe a new class (AddressList), all by ESR.
Diffstat (limited to 'Doc/lib/librfc822.tex')
-rw-r--r-- | Doc/lib/librfc822.tex | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/Doc/lib/librfc822.tex b/Doc/lib/librfc822.tex index d97e0f3..2d8fc7e 100644 --- a/Doc/lib/librfc822.tex +++ b/Doc/lib/librfc822.tex @@ -6,7 +6,8 @@ This module defines a class, \class{Message}, which represents a collection of ``email headers'' as defined by the Internet standard \rfc{822}. It is used in various contexts, usually to read such -headers from a file. +headers from a file. This module also defines a helper class +\class{AddressList} for parsing RFC822 addresses. Note that there's a separate module to read \UNIX{}, MH, and MMDF style mailbox files: \module{mailbox}\refstmodindex{mailbox}. @@ -42,6 +43,12 @@ e.g. \code{\var{m}['From']}, \code{\var{m}['from']} and \code{\var{m}['FROM']} all yield the same result. \end{classdesc} +\begin{classdesc}{AddressList}{field} +You may instantiate the AddresssList helper class using a single +string parameter, a comma-separated list of RFC822 addresses to be +parsed. (The parameter None yields an empty list.) +\end{classdesc} + \begin{funcdesc}{parsedate}{date} Attempts to parse a date according to the rules in \rfc{822}. however, some mailers don't follow that format as specified, so @@ -198,10 +205,45 @@ Finally, \class{Message} instances have two public instance variables: \begin{memberdesc}{headers} A list containing the entire set of header lines, in the order in -which they were read. Each line contains a trailing newline. The +which they were read (except that setitem calls may disturb this +order). Each line contains a trailing newline. The blank line terminating the headers is not contained in the list. \end{memberdesc} \begin{memberdesc}{fp} The file object passed at instantiation time. \end{memberdesc} + +\subsection{AddressList Objects} +\label{addresslist-objects} + +An \class{AddressList} instance has the following methods: + +\begin{methoddesc}{__len__}{name} +Return the number of addresses in the address list. +\end{methoddesc} + +\begin{methoddesc}{__str__}{name} +Return a canonicalized string representation of the address list. +Addresses are rendered in "name" <host@domain> form, comma-separated. +\end{methoddesc} + +\begin{methoddesc}{__add__}{name} +Return an AddressList instance that contains all addresses in both +AddressList operands, with duplicates removed (set union). +\end{methoddesc} + +\begin{methoddesc}{__sub__}{name} +Return an AddressList instance that contains every address in the +left-hand AddressList operand that is not present in the right-hand +address operand (set difference). +\end{methoddesc} + + +Finally, \class{AddressList} instances have one public instance variable: + +\begin{memberdesc}{addresslist} +A list of tuple string pairs, one per address. In each member, the +first is the canonicalized name part of the address, the second is the +route-address (@-separated host-domain pair). +\end{memberdesc} |