Closed GoogleCodeExporter closed 9 years ago
This is a quirk with Python. Whenever you print a binary string to the console,
it will interpret ASCII characters it finds within the string as their actual
character values:
Python 2.7.2 (default, Oct 11 2012, 20:14:37)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> '\x33'
'3'
>>> '\x32'
'2'
>>>
As a result, you may see random ASCII characters appear in your data when
printed to the console; these will not be prefixed by '\x'.
I am closing this ticket as wontfix. If you find any other problems with your
data, feel free to comment here or open a new ticket.
Original comment by pmalms...@gmail.com
on 15 Aug 2014 at 12:35
Original issue reported on code.google.com by
will....@gmail.com
on 3 Jul 2014 at 6:18