This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: email.Utils not mentioned
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: barry Nosy List: barry, jblaine
Priority: normal Keywords:

Created on 2004-09-17 21:40 by jblaine, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg22474 - (view) Author: Jeff Blaine (jblaine) Date: 2004-09-17 21:40
I read the following and had to track down why
'email.make_msgid()' was failing.  Turns out I need to
import email.Utils of course, but the name of the
module to import is not even mentioned in the docs.  It
states they come 'with the email package' only.

...
12.2.9 Miscellaneous utilities

There are several useful utilities provided with the
email package. 

quote(str)
    Return a new string with backslashes in str
replaced by two backslashes, and double quotes replaced
by backslash-double quote.

....
msg22475 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2004-11-01 03:59
Logged In: YES 
user_id=12800

Fixed in Py2.4 and Py2.3 documentation.
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 40922
2004-09-17 21:40:50jblainecreate