]> granicus.if.org Git - python/commitdiff
Issue #24540: fix typo in json.dumps docstring
authorNed Deily <nad@acm.org>
Sun, 5 Jul 2015 18:45:01 +0000 (11:45 -0700)
committerNed Deily <nad@acm.org>
Sun, 5 Jul 2015 18:45:01 +0000 (11:45 -0700)
Lib/json/__init__.py

index 94f7d8c0fa2ae908972e3c372be34929a4e6256f..93986673851d3fdb4552f553ed1289fb3243cff0 100644 (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``.