diff options
author | Georg Brandl <georg@python.org> | 2010-08-22 20:23:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-22 20:23:38 (GMT) |
commit | 6a74da3cdb18c11805d599d51f0507ce7655f8f8 (patch) | |
tree | 5297f02bc4b2d8be2141fc340c291f8a915b03e8 /Doc/library/json.rst | |
parent | 51a059bc8308fd691884bb080476c4fb198da224 (diff) | |
download | cpython-6a74da3cdb18c11805d599d51f0507ce7655f8f8.zip cpython-6a74da3cdb18c11805d599d51f0507ce7655f8f8.tar.gz cpython-6a74da3cdb18c11805d599d51f0507ce7655f8f8.tar.bz2 |
#9649: fix default value description.
Diffstat (limited to 'Doc/library/json.rst')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index e1f5cf2..ac097f7 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -339,7 +339,7 @@ Encoders and decoders encoders and decoders. Otherwise, it will be a :exc:`ValueError` to encode such floats. - If *sort_keys* is ``True`` (the default), then the output of dictionaries + If *sort_keys* is ``True`` (default ``False``), then the output of dictionaries will be sorted by key; this is useful for regression tests to ensure that JSON serializations can be compared on a day-to-day basis. |