#4782: Fix markup error that hid load() and loads().

This commit is contained in:
Georg Brandl 2009-01-01 12:53:19 +00:00
parent 07bfe45730
commit 914fc88cdc
1 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ Basic Usage
:func:`dump`.
.. function load(fp[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, **kw]]]]]]])
.. function:: load(fp[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, **kw]]]]]]])
Deserialize *fp* (a ``.read()``-supporting file-like object containing a JSON
document) to a Python object.
@ -202,7 +202,7 @@ Basic Usage
class.
.. function loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, **kw]]]]]]])
.. function:: loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, **kw]]]]]]])
Deserialize *s* (a :class:`str` or :class:`unicode` instance containing a JSON
document) to a Python object.