From 60fb9719a195d55264b3129203790a6b43988442 Mon Sep 17 00:00:00 2001 From: Felix Crux Date: Mon, 12 Aug 2013 17:39:51 -0400 Subject: Documenting that json.load may raise a ValueError. Issue #18680: JSONDecoder should document that it raises a ValueError for malformed data --- Doc/library/json.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 68aef21..877ccd0 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -245,6 +245,8 @@ Basic Usage kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments will be passed to the constructor of the class. + If the data being deserialized is not a valid JSON document, a + :exc:`ValueError` will be raised. .. function:: loads(s, encoding=None, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw) -- cgit v0.12