diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-21 18:21:21 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-21 18:21:21 (GMT) |
commit | ed891c151748d030a890d50f3bbce3f581304439 (patch) | |
tree | 39a735381b7cd0272264e15a276aa22c00ad279f /Doc | |
parent | 9d202ba25287fca890d051abda575bf74d9cda5f (diff) | |
parent | c510a048ba4f17a82fff0a452bf9ccd29b51efc6 (diff) | |
download | cpython-ed891c151748d030a890d50f3bbce3f581304439.zip cpython-ed891c151748d030a890d50f3bbce3f581304439.tar.gz cpython-ed891c151748d030a890d50f3bbce3f581304439.tar.bz2 |
Issue #17225: JSON decoder now counts columns in the first line starting
with 1, as in other lines.
Diffstat (limited to 'Doc')
-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 bdb6436..f98e0ef 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -102,7 +102,7 @@ Using json.tool from the shell to validate and pretty-print:: "json": "obj" } $ echo '{1.2:3.4}' | python -mjson.tool - Expecting property name enclosed in double quotes: line 1 column 1 (char 1) + Expecting property name enclosed in double quotes: line 1 column 2 (char 1) .. highlight:: python3 |