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: Wrong documentation of MIMENonMultipart class
Type: Stage: resolved
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: BreamoreBoy, docs@python, python-dev, r.david.murray, vajrasky
Priority: normal Keywords: patch

Created on 2013-10-29 15:51 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix_doc_for_mime_non_multipart.patch vajrasky, 2013-10-29 15:51 review
Messages (4)
msg201643 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-10-29 15:51
>>> from email.mime.nonmultipart import MIMENonMultipart
>>> MIMENonMultipart.__doc__
'Base class for MIME multipart/* type messages.'
>>>

Attached the patch to fix the doc of MIMENonMultipart class.
msg228200 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-10-02 10:26
The patch is a one line change, can we have a commit review please.
msg228205 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-02 10:36
New changeset 41f46f7f2722 by Georg Brandl in branch '3.4':
Closes #19434: fix copy-paste error in MIMENonMultipart docstring.
https://hg.python.org/cpython/rev/41f46f7f2722
msg228206 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-02 10:36
New changeset a53f2cf4b556 by Georg Brandl in branch '2.7':
Closes #19434: fix copy-paste error in MIMENonMultipart docstring.
https://hg.python.org/cpython/rev/a53f2cf4b556
History
Date User Action Args
2022-04-11 14:57:52adminsetgithub: 63633
2014-10-02 10:36:19python-devsetmessages: + msg228206
2014-10-02 10:36:06python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg228205

resolution: fixed
stage: resolved
2014-10-02 10:26:01BreamoreBoysetnosy: + BreamoreBoy
messages: + msg228200
2013-10-29 15:51:30vajraskycreate