numpy array
x = np.array([1,2,3,4])
ujson.encode
ujson.encode(x, ensure_ascii=False, double_precision=-1)
gives me error
OverflowError: Maximum recursion level reached
version info
ujson 1.33
python 3.4.3
It seems to be that ujson can not encode numpy array and gives confusing error message.
By the way, where can I find the documentation of ujson. thx