なぜこれが機能しないのですか?simplejson JsonDecoderを読んでいますが、trueは解析可能であり、Trueに変換される必要があります。
% python
>>> import simplejson as json
>>> print json.loads({"bool":true})
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'true' is not defined
>>>