diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-28 23:59:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-28 23:59:54 (GMT) |
commit | 802d669044b14ae535e0136c6a9949a1725b7e14 (patch) | |
tree | 79dd128aa2e8a63906eac4a1e254cb5019949a89 /Doc | |
parent | 3a3dc17fc9a934682dda76188b367ec261905520 (diff) | |
parent | 2d24e94bbef97913b5fc434f991fa429f1533557 (diff) | |
download | cpython-802d669044b14ae535e0136c6a9949a1725b7e14.zip cpython-802d669044b14ae535e0136c6a9949a1725b7e14.tar.gz cpython-802d669044b14ae535e0136c6a9949a1725b7e14.tar.bz2 |
Issue #5067: improve some json error messages.
Patch by Serhiy Storchaka.
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 2bdc577..8686561 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -99,7 +99,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: line 1 column 1 (char 1) + Expecting property name enclosed in double quotes: line 1 column 1 (char 1) .. highlight:: python3 |