Commit 78770f0b authored by Nick Coghlan's avatar Nick Coghlan

Fix typo in new metaclass docs

parent 010ce328
...@@ -1634,7 +1634,7 @@ Creating the class object ...@@ -1634,7 +1634,7 @@ Creating the class object
Once the class namespace has been populated by executing the class body, Once the class namespace has been populated by executing the class body,
the class object is created by calling the class object is created by calling
``metaclass(name, bases, namespace, **kwds)`` (the additional keywords ``metaclass(name, bases, namespace, **kwds)`` (the additional keywords
passed here are the same as those passed to ``__prepate__``). passed here are the same as those passed to ``__prepare__``).
This class object is the one that will be referenced by the zero-argument This class object is the one that will be referenced by the zero-argument
form of :func:`super`. ``__class__`` is an implicit closure reference form of :func:`super`. ``__class__`` is an implicit closure reference
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment