[Python-checkins] cpython (3.1): Small wording fix.

georg.brandl python-checkins at python.org
Sat Apr 16 17:00:07 CEST 2011


http://hg.python.org/cpython/rev/ff735436c247
changeset:   69395:ff735436c247
branch:      3.1
parent:      69389:a6d9f9329070
user:        Georg Brandl <georg at python.org>
date:        Sat Apr 16 16:54:15 2011 +0200
summary:
  Small wording fix.

files:
  Doc/library/json.rst |  7 ++++---
  1 files changed, 4 insertions(+), 3 deletions(-)


diff --git a/Doc/library/json.rst b/Doc/library/json.rst
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -158,9 +158,10 @@
 
    .. 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)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list