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 martin.panter, orsenthil, pfalcon, r.david.murray, terry.reedy
Date 2015-03-24.08:00:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427184046.22.0.58750249211.issue21511@psf.upfronthosting.co.za>
In-reply-to
Content
The implementation has been fixed for Issue 23681 to slice instead of index, and now compares byte strings:

>>> import quopri
>>> quopri.decodestring(b"123==four")
b'123=four'
>>> quopri.a2b_qp = None
>>> quopri.decodestring(b"123==four")
b'123=four'

However, I think a test still needs to be written to cover this branch of the code.
History
Date User Action Args
2015-03-24 08:00:46martin.pantersetrecipients: + martin.panter, terry.reedy, pfalcon, orsenthil, r.david.murray
2015-03-24 08:00:46martin.pantersetmessageid: <1427184046.22.0.58750249211.issue21511@psf.upfronthosting.co.za>
2015-03-24 08:00:46martin.panterlinkissue21511 messages
2015-03-24 08:00:45martin.pantercreate