diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 13:50:21 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 13:50:21 +0200 |
commit | d80c3fb17bec4dd32129a331b5bd77b5e248d588 (patch) | |
tree | 80ced8bfbdb4e58c7645685a0d297c9d06b4a7c2 /Doc/library/json.rst | |
parent | a1d59af1ef8be4ee458e2631fa8411f3128a07b0 (diff) | |
parent | 0264e46caa854803a5318d75ae7893e9174f3f70 (diff) | |
download | cpython-git-d80c3fb17bec4dd32129a331b5bd77b5e248d588.tar.gz |
Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges
in the documentation.
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 200fa14740..76e936f2bc 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -345,7 +345,7 @@ Encoders and Decoders If *strict* is false (``True`` is the default), then control characters will be allowed inside strings. Control characters in this context are - those with character codes in the 0-31 range, including ``'\t'`` (tab), + those with character codes in the 0--31 range, including ``'\t'`` (tab), ``'\n'``, ``'\r'`` and ``'\0'``. If the data being deserialized is not a valid JSON document, a |