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 Kuukunen
Recipients Kuukunen
Date 2013-03-06.16:31:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362587505.92.0.0585396597719.issue17368@psf.upfronthosting.co.za>
In-reply-to
Content
Specifying any object_pairs_hook makes JSON decoding break when JSONObject from json/decoder.py is used.

Can be emulated easily by setting c_make_scanner = None at json/scanner.py

Example script:
**
import json
test = '{"key": "value", "empty": {}}'

def hook(pairs):
    return dict(pairs)

print(json.loads(test, object_pairs_hook=hook))
**

This test will fail because the return statement on line 166 in http://hg.python.org/cpython/file/cfc777407b03/Lib/json/decoder.py lacks "+ 1" even though the statement on line 170 has it. Basically, any empty JSON object will cause "ValueError: Extra data: [...]".
History
Date User Action Args
2013-03-06 16:31:45Kuukunensetrecipients: + Kuukunen
2013-03-06 16:31:45Kuukunensetmessageid: <1362587505.92.0.0585396597719.issue17368@psf.upfronthosting.co.za>
2013-03-06 16:31:45Kuukunenlinkissue17368 messages
2013-03-06 16:31:45Kuukunencreate