[Python-checkins] r71954 - in python/branches/py3k/Doc: library/json.rst reference/datamodel.rst

hirokazu.yamamoto python-checkins at python.org
Sun Apr 26 05:34:07 CEST 2009


Author: hirokazu.yamamoto
Date: Sun Apr 26 05:34:06 2009
New Revision: 71954

Log:
Fixed documentation build warning.

Modified:
   python/branches/py3k/Doc/library/json.rst
   python/branches/py3k/Doc/reference/datamodel.rst

Modified: python/branches/py3k/Doc/library/json.rst
==============================================================================
--- python/branches/py3k/Doc/library/json.rst	(original)
+++ python/branches/py3k/Doc/library/json.rst	Sun Apr 26 05:34:06 2009
@@ -190,7 +190,7 @@
    *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 @@
    *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)``.

Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst	(original)
+++ python/branches/py3k/Doc/reference/datamodel.rst	Sun Apr 26 05:34:06 2009
@@ -1569,7 +1569,7 @@
 :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*.
 


More information about the Python-checkins mailing list