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 serhiy.storchaka
Recipients fredstober, lemburg, martin.panter, r.david.murray, serhiy.storchaka, vajrasky
Date 2014-12-17.20:50:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1418849435.74.0.146958719535.issue20121@psf.upfronthosting.co.za>
In-reply-to
Content
Pure Python implementation returns different result.

>>> import quopri
>>> quopri.encodestring(b'\r\n')
b'\r\n'
>>> quopri.a2b_qp = quopri.b2a_qp = None
>>> quopri.encodestring(b'\r\n')
b'=0D\n'

See also issue18022.
History
Date User Action Args
2014-12-17 20:50:35serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, r.david.murray, martin.panter, vajrasky, fredstober
2014-12-17 20:50:35serhiy.storchakasetmessageid: <1418849435.74.0.146958719535.issue20121@psf.upfronthosting.co.za>
2014-12-17 20:50:35serhiy.storchakalinkissue20121 messages
2014-12-17 20:50:35serhiy.storchakacreate