(original) (raw)

changeset: 77001:4f27c4dc34ed branch: 3.2 parent: 76995:13900edf13be user: Hynek Schlawack hs@ox.cx date: Wed May 16 19:01:04 2012 +0200 files: Doc/library/json.rst description: #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 -r 13900edf13be -r 4f27c4dc34ed Doc/library/json.rst --- a/Doc/library/json.rst Wed May 16 15:01:40 2012 +0200 +++ b/Doc/library/json.rst Wed May 16 19:01:04 2012 +0200 @@ -209,8 +209,8 @@ (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`` /hs@ox.cx