From: Georg Brandl Date: Sat, 16 Apr 2011 14:54:15 +0000 (+0200) Subject: Small wording fix. X-Git-Tag: v3.2.1b1~115^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=340d2690b3db594edfa1eb27cda2afe957235ba6;p=thirdparty%2FPython%2Fcpython.git Small wording fix. --- diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 0b42012c9acf..6bb48e81ef51 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -158,9 +158,10 @@ Basic Usage .. note:: - Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol so - trying to serialize more objects with repeated calls to :func:`dump` and - the same *fp* will result in an invalid JSON file. + Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol, + so trying to serialize multiple objects with repeated calls to + :func:`dump` using the same *fp* will result in an invalid JSON file. + .. function:: load(fp, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw)