New submission from Fred Stober: While trying to encode some binary data, I encountered this behaviour of the quopri_codec:
>>> '\r\n\n'.encode('quopri_codec').decode('quopri_codec') '\r\n\r\n' >>> '\n\r\n'.encode('quopri_codec').decode('quopri_codec') '\n\n' If this behaviour is really intended, it should be mentioned in the documentation that this coded is not bijective. ---------- components: Library (Lib) messages: 207281 nosy: fredstober priority: normal severity: normal status: open title: quopri_codec newline handling versions: Python 2.7 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue20121> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com