diff options
author | Barry Warsaw <barry@python.org> | 2002-05-22 01:22:46 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-05-22 01:22:46 (GMT) |
commit | c421ad4a35513c5dd2121a7c85ce5f3085d299a1 (patch) | |
tree | 6c3bf0f38c8146958ac908752a127e5c5db321bd | |
parent | 012ed5da5edcb0f84a581e42efccef44700943c6 (diff) | |
download | cpython-c421ad4a35513c5dd2121a7c85ce5f3085d299a1.zip cpython-c421ad4a35513c5dd2121a7c85ce5f3085d299a1.tar.gz cpython-c421ad4a35513c5dd2121a7c85ce5f3085d299a1.tar.bz2 |
Minor typo: Message.getall() -> Message.get_all()
-rw-r--r-- | Doc/lib/emailutil.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/emailutil.tex b/Doc/lib/emailutil.tex index 8ebee97..75f3798 100644 --- a/Doc/lib/emailutil.tex +++ b/Doc/lib/emailutil.tex @@ -34,7 +34,7 @@ for a \mailheader{To} or \mailheader{Cc} header. If the first element of \begin{funcdesc}{getaddresses}{fieldvalues} This method returns a list of 2-tuples of the form returned by \code{parseaddr()}. \var{fieldvalues} is a sequence of header field -values as might be returned by \method{Message.getall()}. Here's a +values as might be returned by \method{Message.get_all()}. Here's a simple example that gets all the recipients of a message: \begin{verbatim} |