[Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2
georg.brandl
python-checkins at python.org
Sat Apr 16 17:00:09 CEST 2011
http://hg.python.org/cpython/rev/ef415ec1900b
changeset: 69397:ef415ec1900b
parent: 69394:9fbbc8d79a09
parent: 69396:f1e3f77b8af8
user: Georg Brandl <georg at python.org>
date: Sat Apr 16 16:59:48 2011 +0200
summary:
Merge with 3.2
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
@@ -160,9 +160,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