diff options
| author | Barry Warsaw <barry@python.org> | 2006-03-18 15:41:53 +0000 |
|---|---|---|
| committer | Barry Warsaw <barry@python.org> | 2006-03-18 15:41:53 +0000 |
| commit | 40ef0067ad5af2458c54cc0316831ddb701ea3fd (patch) | |
| tree | 52204dc86cfb735d4aadff24864af50da4fe78de /Doc/lib/emailutil.tex | |
| parent | 9ae019bf5b92d9ac0ee8bb53829f6b5a16d5fab2 (diff) | |
| download | cpython-git-40ef0067ad5af2458c54cc0316831ddb701ea3fd.tar.gz | |
Merge email package 4.0 from the sandbox, including documentation, test cases,
and NEWS updates.
Diffstat (limited to 'Doc/lib/emailutil.tex')
| -rw-r--r-- | Doc/lib/emailutil.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/emailutil.tex b/Doc/lib/emailutil.tex index 491a2b9d0a..fe96473638 100644 --- a/Doc/lib/emailutil.tex +++ b/Doc/lib/emailutil.tex @@ -1,7 +1,7 @@ -\declaremodule{standard}{email.Utils} +\declaremodule{standard}{email.utils} \modulesynopsis{Miscellaneous email package utilities.} -There are several useful utilities provided in the \module{email.Utils} +There are several useful utilities provided in the \module{email.utils} module: \begin{funcdesc}{quote}{str} @@ -38,7 +38,7 @@ 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} -from email.Utils import getaddresses +from email.utils import getaddresses tos = msg.get_all('to', []) ccs = msg.get_all('cc', []) |
