summaryrefslogtreecommitdiffstats
path: root/Lib/json
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-30 10:59:12 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-30 10:59:12 (GMT)
commit15287f8bcccdaeb7ae4a58373547c77137966bc1 (patch)
tree34083dece8d488d8ac95930a4fce50fa528e2065 /Lib/json
parent0ab67dfb7c8dc7ddb983c1accee6697238c03810 (diff)
downloadcpython-15287f8bcccdaeb7ae4a58373547c77137966bc1.zip
cpython-15287f8bcccdaeb7ae4a58373547c77137966bc1.tar.gz
cpython-15287f8bcccdaeb7ae4a58373547c77137966bc1.tar.bz2
Issue #4945: Improved the documenting of boolean arguments in the json module.
Based on patch by Gabriel Genellina.
Diffstat (limited to 'Lib/json')
-rw-r--r--Lib/json/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/json/__init__.py b/Lib/json/__init__.py
index 2612657..f72b058 100644
--- a/Lib/json/__init__.py
+++ b/Lib/json/__init__.py
@@ -152,7 +152,7 @@ def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True,
``default(obj)`` is a function that should return a serializable version
of obj or raise TypeError. The default simply raises TypeError.
- If *sort_keys* is ``True`` (default: ``False``), then the output of
+ If *sort_keys* is true (default: ``False``), then the output of
dictionaries will be sorted by key.
To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
@@ -214,7 +214,7 @@ def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
``default(obj)`` is a function that should return a serializable version
of obj or raise TypeError. The default simply raises TypeError.
- If *sort_keys* is ``True`` (default: ``False``), then the output of
+ If *sort_keys* is true (default: ``False``), then the output of
dictionaries will be sorted by key.
To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the