Re: json decode issue

2011-07-14 Thread Nobody
On Thu, 14 Jul 2011 10:22:44 -0700, Miki Tebeka wrote: > I'm trying to decode JSON output of a Java program (jackson) and having > some issues. The cause of the problem is the following snippet: > { > "description": "... lives\uMOVE™ OFFERS ", > } > Which causes ValueError: Invalid

Re: json decode issue

2011-07-14 Thread Terry Reedy
On 7/14/2011 3:20 PM, MRAB wrote: On 14/07/2011 18:22, Miki Tebeka wrote: Greetings, I'm trying to decode JSON output of a Java program (jackson) and having some issues. The cause of the problem is the following snippet: { "description": "... lives\uMOVE™ OFFERS ", } Which causes ValueError: In

Re: json decode issue

2011-07-14 Thread MRAB
On 14/07/2011 18:22, Miki Tebeka wrote: Greetings, I'm trying to decode JSON output of a Java program (jackson) and having some issues. The cause of the problem is the following snippet: { "description": "... lives\uMOVE™ OFFERS ", } Which causes ValueError: Invalid \u es

json decode issue

2011-07-14 Thread Miki Tebeka
Greetings, I'm trying to decode JSON output of a Java program (jackson) and having some issues. The cause of the problem is the following snippet: { "description": "... lives\uMOVE™ OFFERS ", } Which causes ValueError: Invalid \u escape. Any ideas on how to fix this? Thanks,