We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finded some really strange bug ujson version 1.35
> ujson.dumps({'params': [1, 18446744073709551616L], 'method': ''}) '{"params":[1,],"method":""}' > ujson.dumps({'params': [1, 18446744073709551616L], 'test': ''}) Traceback (most recent call last): File "<stdin>", line 1, in <module> OverflowError: long too big to convert
as you can see in first example encoder silently ignore LONG and return incorrect data, but in second example it raise error
This is repost from closed #99
The text was updated successfully, but these errors were encountered:
Strange one indeed. This is fixed in 409c6d4. Thanks!
Sorry, something went wrong.
No branches or pull requests
Finded some really strange bug
ujson version 1.35
as you can see in first example encoder silently ignore LONG and return incorrect data, but in second example it raise error
This is repost from closed #99
The text was updated successfully, but these errors were encountered: