Petri Lehtinen <pe...@digip.org> added the comment: Ram Rachum wrote: > The `rot_13` codec is supposed to work like this, no?
No it isn't. In Python 3, str.encode() always encodes to bytes and bytes.decode() always decodes to str. IOW, str.encode() encodes text (Unicode) to data (bytes), and bytes.decode() decodes data to text. ROT-13 is not a character encoding, so it cannot be used in this manner. It's still available in the codecs module, though: >>> import codecs >>> codecs.lookup('rot-13').encode('qwerty') ('djregl', 6) Other text->text and bytes->bytes codecs are also available there. ---------- nosy: +petri.lehtinen resolution: -> invalid stage: -> committed/rejected status: open -> closed type: -> behavior _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue13600> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com