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.

Author martin.panter
Recipients barry, docs@python, martin.panter, r.david.murray, scop
Date 2016-08-30.22:17:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472595443.04.0.800364435102.issue27893@psf.upfronthosting.co.za>
In-reply-to
Content
Actually it seems the parameter is called *text*:

>>> BytesParser().parsebytes(bytes=b"")
TypeError: parsebytes() got an unexpected keyword argument 'bytes'
>>> BytesParser().parsebytes(text=b"")
<email.message.Message object at 0xb6a2136c>
History
Date User Action Args
2016-08-30 22:17:23martin.pantersetrecipients: + martin.panter, barry, scop, r.david.murray, docs@python
2016-08-30 22:17:23martin.pantersetmessageid: <1472595443.04.0.800364435102.issue27893@psf.upfronthosting.co.za>
2016-08-30 22:17:22martin.panterlinkissue27893 messages
2016-08-30 22:17:22martin.pantercreate