diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-04-26 03:34:06 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-04-26 03:34:06 (GMT) |
commit | ae9eb5c4d00682af7f7835c74f20f50d83720f2d (patch) | |
tree | 5939b7ee254a6238727d82840cf3f3e0b2ded583 /Doc/reference | |
parent | c34ed8e86972510f8a3ab161b175ef4a7619d6ab (diff) | |
download | cpython-ae9eb5c4d00682af7f7835c74f20f50d83720f2d.zip cpython-ae9eb5c4d00682af7f7835c74f20f50d83720f2d.tar.gz cpython-ae9eb5c4d00682af7f7835c74f20f50d83720f2d.tar.bz2 |
Fixed documentation build warning.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 1e54db7..83d2358 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -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*. |