diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 11:49:59 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 11:49:59 (GMT) |
commit | 0264e46caa854803a5318d75ae7893e9174f3f70 (patch) | |
tree | d10de752a926c4d1ba8d8ff3e7fe7062854af202 /Doc/library/json.rst | |
parent | 861b6859418e2cf747475f83471075c18baf74bd (diff) | |
parent | c7b1a0bbe2ae298ba0471703ad6d5ef86ae5881d (diff) | |
download | cpython-0264e46caa854803a5318d75ae7893e9174f3f70.zip cpython-0264e46caa854803a5318d75ae7893e9174f3f70.tar.gz cpython-0264e46caa854803a5318d75ae7893e9174f3f70.tar.bz2 |
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 200fa14..76e936f 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 |