summaryrefslogtreecommitdiff
path: root/Doc/reference
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-05-20 19:36:40 +1000
committerNick Coghlan <ncoghlan@gmail.com>2012-05-20 19:36:40 +1000
commitb267475ccf558d3b7736ba9984d1cc297eb1a6ae (patch)
tree4f5908727e6b06038baa4857f020ce294a11895a /Doc/reference
parent185f4013082288b66d6f40ea1b65f242e46f3fee (diff)
downloadcpython-git-b267475ccf558d3b7736ba9984d1cc297eb1a6ae.tar.gz
Clarify a paragraph in the new metaclass docs
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/datamodel.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 0510d8e62c..643cabc595 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1656,9 +1656,9 @@ created by the compiler if any methods in a class body refer to either
lexical scoping, while the class or instance that was used to make the
current call is identified based on the first argument passed to the method.
-After the class object is created, any class decorators included in the
-function definition are invoked and the resulting object is bound in the
-local namespace to the name of the class.
+After the class object is created, it is passed to the class decorators
+included in the class definition (if any) and the resulting object is bound
+in the local namespace as the defined class.
.. seealso::