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
In json.loads, if there are duplicate keys the last key observed will smash any earlier one. For example:
json.loads
json.loads('{"1": 2, "1": 99}') == {'1': 99}
This is dangerous. Is there a good way to check for it?
The text was updated successfully, but these errors were encountered:
remove JSON loading concern from comment to #38
e0219db
Most relevant to the check function...
check
Sorry, something went wrong.
No branches or pull requests
In
json.loads
, if there are duplicate keys the last key observed will smash any earlier one. For example:This is dangerous. Is there a good way to check for it?
The text was updated successfully, but these errors were encountered: