diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-08-24 17:50:43 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-08-24 17:50:43 (GMT) |
commit | 0ac0b11ec1bb471021982fa48d67ce8b11052080 (patch) | |
tree | d72ae3758057f340c1a8b66c9c3ac221c7c65123 | |
parent | cb0ec7dc425bbcd6a3325b2012f6843320219d34 (diff) | |
parent | 15251a99bb239674ec2a4b2d4f7f5bf24235c34f (diff) | |
download | cpython-0ac0b11ec1bb471021982fa48d67ce8b11052080.zip cpython-0ac0b11ec1bb471021982fa48d67ce8b11052080.tar.gz cpython-0ac0b11ec1bb471021982fa48d67ce8b11052080.tar.bz2 |
Add glossary references
-rw-r--r-- | Doc/library/json.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 5f15926..0229ab5 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -119,7 +119,7 @@ Basic Usage .. function:: dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, **kw) Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting - file-like object). + :term:`file-like object`). If *skipkeys* is ``True`` (default: ``False``), then dict keys that are not of a basic type (:class:`str`, :class:`int`, :class:`float`, :class:`bool`, @@ -183,8 +183,8 @@ Basic Usage .. function:: load(fp, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw) - Deserialize *fp* (a ``.read()``-supporting file-like object containing a JSON - document) to a Python object. + Deserialize *fp* (a ``.read()``-supporting :term:`file-like object` + containing a JSON document) to a Python object. *object_hook* is an optional function that will be called with the result of any object literal decoded (a :class:`dict`). The return value of |