diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-21 18:26:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-21 18:26:52 (GMT) |
commit | 920007ad76f1a880e6784ddb97a5c6c99a19b9a9 (patch) | |
tree | e2357a83bd8c806e9cd1383d0696a0c2c02e2bfc /Doc/library/json.rst | |
parent | fc9bf110a21cd62ffebf36df743777e6d6097cb6 (diff) | |
parent | ed891c151748d030a890d50f3bbce3f581304439 (diff) | |
download | cpython-920007ad76f1a880e6784ddb97a5c6c99a19b9a9.zip cpython-920007ad76f1a880e6784ddb97a5c6c99a19b9a9.tar.gz cpython-920007ad76f1a880e6784ddb97a5c6c99a19b9a9.tar.bz2 |
Issue #17225: JSON decoder now counts columns in the first line starting
with 1, as in other lines.
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 25a3358..500435c 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -101,7 +101,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 |