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: A line in the second example of "7.3.5 Examples" in "Python Library Reference" seems to be incorrect.
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: furutaka, georg.brandl
Priority: normal Keywords:

Created on 2008-03-10 13:55 by furutaka, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg63442 - (view) Author: Kazuyoshi Furutaka (furutaka) Date: 2008-03-10 13:55
The line
    destination.add(MHMessage(message))
should read
    destination.add(mailbox.MHMessage(message))
msg63495 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-03-13 07:16
Fixed in r61363.
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46518
2008-03-13 07:16:10georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg63495
2008-03-10 13:55:36furutakacreate