Message159359
I know this does not fix anything at the core, but it would allow you to use json.loads() with python 3.2 (maybe 3.1?):
Replace
json.loads(raw_data)
by
raw_data = raw_data.decode('utf-8') # Or any other ISO format
json.loads(raw_data) |
|
| Date |
User |
Action |
Args |
| 2012-04-26 08:20:57 | Balthazar.Rouberol | set | recipients:
+ Balthazar.Rouberol, barry, georg.brandl, hhas, pitrou, ezio.melotti, eric.araujo, r.david.murray, docs@python, antlong |
| 2012-04-26 08:20:57 | Balthazar.Rouberol | set | messageid: <[email protected]> |
| 2012-04-26 08:20:56 | Balthazar.Rouberol | link | issue10976 messages |
| 2012-04-26 08:20:56 | Balthazar.Rouberol | create | |
|