为什么这不起作用?我正在阅读 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
>>>