From: Hynek Schlawack Date: Wed, 16 May 2012 16:02:54 +0000 (+0200) Subject: #14692 Fix json docs to reflect changes in json.load X-Git-Tag: v2.7.4rc1~816 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=019935f6154a8a2861864c5c3d4f0bcac07784d3;p=python #14692 Fix json docs to reflect changes in json.load The behaviour of the parse_constant callback changed insofar that 'null', 'true', 'false' don't trigger its call anymore. Patch by Serhiy Storchaka --- diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 6d4497f224..218bf9b832 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -217,8 +217,8 @@ Basic Usage (e.g. :class:`float`). *parse_constant*, if specified, will be called with one of the following - strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``, - ``'false'``. This can be used to raise an exception if invalid JSON numbers + strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``. + This can be used to raise an exception if invalid JSON numbers are encountered. To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``