Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] onwin32
>>> import json, ujson
>>> ujson.__version__
>>> '1.18'
>>> ujson.loads('[18446098363113800555]')
>>> [-645710595751061L]
>>> json.loads('[18446098363113800555]')
>>> [18446098363113800555L]
同样是在32位机上, ujson 溢出,后面在linux64上,也溢出