``` import rapidjson as json json.dumps(np.float64(123)) # -> 'np.float64(123.0)' json.loads('np.float64(123.0)') # -> JSONDecodeError: Parse error at offset 1: Invalid value ``` The stock json seems to handle this fine.
The stock json seems to handle this fine.