-
Notifications
You must be signed in to change notification settings - Fork 334
New issue
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
Typo in the doc for loads #161
Comments
serhiy-storchaka
added a commit
that referenced
this issue
May 8, 2017
Thank you for your report @bmampaey. |
This was referenced Jun 18, 2017
This was referenced Jun 19, 2017
This was referenced Nov 5, 2017
This was referenced Nov 24, 2017
This was referenced Dec 31, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The function loads take a string s as first parameter, but the doc says that it takes fp
function:: loads(fp, encoding='utf-8', cls=None, object_hook=None,
parse_float=None, parse_int=None,
parse_constant=None, object_pairs_hook=None,
use_decimal=None, **kw)
Deserialize s (a :class:
str
or :class:unicode
instance containing a JSONdocument) to a Python object. :exc:
JSONDecodeError
will beraised if the given JSON document is not valid.
The text was updated successfully, but these errors were encountered: