Issue #24540: fix typo in json.dumps docstring

This commit is contained in:
Ned Deily 2015-07-05 11:45:01 -07:00
parent 1da0612e70
commit 54630d999f
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
default=None, sort_keys=False, **kw):
"""Serialize ``obj`` to a JSON formatted ``str``.
If ``skipkeys`` is false then ``dict`` keys that are not basic types
If ``skipkeys`` is true then ``dict`` keys that are not basic types
(``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
instead of raising a ``TypeError``.