]> granicus.if.org Git - python/commitdiff
Fixed documentation build warning.
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sun, 26 Apr 2009 03:34:06 +0000 (03:34 +0000)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sun, 26 Apr 2009 03:34:06 +0000 (03:34 +0000)
Doc/library/json.rst
Doc/reference/datamodel.rst

index edaf65722dc481896beb8340082519985044f404..e2d189c58147e6f0deedf7578135e13268adbd72 100644 (file)
@@ -190,7 +190,7 @@ Basic Usage
    *object_hook* is also defined, the *object_pairs_hook* takes priority.
 
    .. versionchanged:: 3.1
-   Added support for *object_pairs_hook*.
+      Added support for *object_pairs_hook*.
 
    *parse_float*, if specified, will be called with the string of every JSON
    float to be decoded.  By default, this is equivalent to ``float(num_str)``.
@@ -278,7 +278,7 @@ Encoders and decoders
    *object_hook* is also defined, the *object_pairs_hook* takes priority.
 
    .. versionchanged:: 3.1
-   Added support for *object_pairs_hook*.
+      Added support for *object_pairs_hook*.
 
    *parse_float*, if specified, will be called with the string of every JSON
    float to be decoded.  By default, this is equivalent to ``float(num_str)``.
index 1e54db7903cbb5fb3f1838c0a5de4b268c6bc34f..83d23584c929228008832b345b5eeb190d3c447c 100644 (file)
@@ -1569,7 +1569,7 @@ calling the metaclass's :meth:`__prepare__` method which returns an empty
 :class:`collections.OrderedDict`.  That mapping records the methods and
 attributes of *A* as they are defined within the body of the class statement.
 Once those definitions are executed, the ordered dictionary is fully populated
-and the metaclass's :meth:`__new__ ` method gets invoked.  That method builds
+and the metaclass's :meth:`__new__` method gets invoked.  That method builds
 the new type and it saves the ordered dictionary keys in an attribute
 called *members*.