diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-01-27 10:56:14 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-01-27 10:56:14 (GMT) |
commit | e7213c7a808f29cbaadea6156e35c077d488d419 (patch) | |
tree | f0bd1616b16a5559fab922624981a77d0e6ec005 | |
parent | 2bcb32372cffd1d47eff6263a08b30031602598c (diff) | |
download | cpython-e7213c7a808f29cbaadea6156e35c077d488d419.zip cpython-e7213c7a808f29cbaadea6156e35c077d488d419.tar.gz cpython-e7213c7a808f29cbaadea6156e35c077d488d419.tar.bz2 |
Emphasis that instantiating this class doesn't consume the message body.
Fix some unclear language in the description of the addrlist member.
-rw-r--r-- | Doc/lib/librfc822.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/librfc822.tex b/Doc/lib/librfc822.tex index 9d35830..a31c8c4 100644 --- a/Doc/lib/librfc822.tex +++ b/Doc/lib/librfc822.tex @@ -20,7 +20,7 @@ parameter. Message relies only on the input object having a \method{readline()} method; in particular, ordinary file objects qualify. Instantiation reads headers from the input object up to a delimiter line (normally a blank line) and stores them in the -instance. +instance. The message body, following the headers, is not consumed. This class can work with any input object that supports a \method{readline()} method. If the input object has seek and tell @@ -263,6 +263,6 @@ 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). +first is the canonicalized name part, the second is the +actual route-address (@-separated username-host.domain pair). \end{memberdesc} |