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 Yakov.Keselman
Recipients Yakov.Keselman
Date 2014-04-08.23:42:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397000533.56.0.918232006199.issue21182@psf.upfronthosting.co.za>
In-reply-to
Content
Run the following Python JSON parsing script on valid JSON:

import json
json.loads( '["[\"Residential | Furniture | Cabinets\",\"119.99\"]"]' )

Result:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python33\lib\json\__init__.py", line 319, in loads
    return _default_decoder.decode(s)
  File "C:\Python33\lib\json\decoder.py", line 352, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "C:\Python33\lib\json\decoder.py", line 368, in raw_decode
    obj, end = self.scan_once(s, idx)
ValueError: Expecting ',' delimiter: line 1 column 5 (char 4)
History
Date User Action Args
2014-04-08 23:42:13Yakov.Keselmansetrecipients: + Yakov.Keselman
2014-04-08 23:42:13Yakov.Keselmansetmessageid: <1397000533.56.0.918232006199.issue21182@psf.upfronthosting.co.za>
2014-04-08 23:42:13Yakov.Keselmanlinkissue21182 messages
2014-04-08 23:42:12Yakov.Keselmancreate