From c510a048ba4f17a82fff0a452bf9ccd29b51efc6 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 21 Feb 2013 20:19:16 +0200 Subject: Issue #17225: JSON decoder now counts columns in the first line starting with 1, as in other lines. --- Doc/library/json.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Doc/library/json.rst') diff --git a/Doc/library/json.rst b/Doc/library/json.rst index bdb6436e98..f98e0ef603 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 -- cgit v1.2.1