Anthony Sottile added the comment:

Oops, broke b'/%80'.

Here's a better fix that now takes:

    (on the wire) b'\x80' -(decode latin1)-> u'\x80' -(encode utf-8)-> 
b'\xc2\x80' -(decode latin1)-> u'\xc2\x80'

to:

    (on the wire) b'\x80' -(decode latin1)-> u'\x80' -(encode latin1) -> 
b'\x80' -(decode latin1)-> u'\x80'

----------
Added file: http://bugs.python.org/file42403/patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26717>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to