generalize utf8 decoding error handling to any field specified as bytess in converters
Closes T435.
Differential D45
T435-c jbertran on Jun 10 2016, 4:06 PM. Authored by
Details
generalize utf8 decoding error handling to any field specified as bytess in converters Closes T435.
Diff Detail
Event TimelineComment Actions Hey, You should somehow mark what fields failed to decode and got escaped; in the current implementation there is no way to distinguish between some_input = { 'a': 'something', 'b': 'someone', 'c': b'a name \xff', 'd': b'an email \xff', } and some_input = { 'a': 'something', 'b': 'someone', 'c': b'a name \\xff', 'd': b'an email \\xff', } |