This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Balthazar.Rouberol
Recipients Balthazar.Rouberol, antlong, barry, docs@python, eric.araujo, ezio.melotti, georg.brandl, hhas, pitrou, r.david.murray
Date 2012-04-26.08:20:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335428457.49.0.702959754745.issue10976@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2012-04-26 08:20:57Balthazar.Rouberolsetrecipients: + Balthazar.Rouberol, barry, georg.brandl, hhas, pitrou, ezio.melotti, eric.araujo, r.david.murray, docs@python, antlong
2012-04-26 08:20:57Balthazar.Rouberolsetmessageid: <1335428457.49.0.702959754745.issue10976@psf.upfronthosting.co.za>
2012-04-26 08:20:56Balthazar.Rouberollinkissue10976 messages
2012-04-26 08:20:56Balthazar.Rouberolcreate