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: functions in email package listed under wrong module
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, ggenellina
Priority: normal Keywords:

Created on 2008-11-06 09:48 by ggenellina, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg75554 - (view) Author: Gabriel Genellina (ggenellina) Date: 2008-11-06 09:48
Functions message_from_string and message_from_file are documented as 
belonging to the email.parser module, but in fact they live at the top 
of the email package.

The .rst source looks fine, but the rendered html says  
`email.parser.message_from_string`. 
http://docs.python.org/library/email.parser.html#parser-class-api

Perhaps it's the `module:: email.parser` directive at the top?

A similar problem is in email.mime.rst; all the documented classes are 
exposed at the top of the email package (i.e. should be email.MIMEBase, 
not email.mime.MIMEBase)
msg75555 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-11-06 10:18
Thanks, fixed in r67117.
History
Date User Action Args
2022-04-11 14:56:40adminsetgithub: 48518
2008-11-06 10:18:12georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg75555
2008-11-06 09:48:11ggenellinacreate