Message225889
> data.encode('utf-8', 'replace').decode('utf-8')
> data.encode('utf-8', 'ignore').decode('utf-8')
Why not the reverse:
os.fsencode(data).decode('utf-8', 'replace')
os.fsencode(data).decode('utf-8', 'ignore')
Note that "backslashreplace" needs to be enhanced to work when decoding too.
Note that "xmlcharrefreplace" doesn't make sense here: it encodes a *character* reference, but you're precisely trying to represent something which fails interpreting as a character.
(AFAIK, XML can't represent non-text data, except in NDATA sequences) |
|
Date |
User |
Action |
Args |
2014-08-25 18:55:02 | pitrou | set | recipients:
+ pitrou, ncoghlan, vstinner, ezio.melotti, Arfrever, r.david.murray, serhiy.storchaka |
2014-08-25 18:55:02 | pitrou | set | messageid: <1408992902.52.0.0500199216556.issue18814@psf.upfronthosting.co.za> |
2014-08-25 18:55:02 | pitrou | link | issue18814 messages |
2014-08-25 18:55:02 | pitrou | create | |
|