Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c4faeea9
Commit
c4faeea9
authored
Apr 07, 2009
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix nits
parent
15efcb6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Doc/reference/datamodel.rst
Doc/reference/datamodel.rst
+5
-5
No files found.
Doc/reference/datamodel.rst
View file @
c4faeea9
...
@@ -1564,13 +1564,13 @@ to remember the order that class members were defined::
...
@@ -1564,13 +1564,13 @@ to remember the order that class members were defined::
>>> A.members
>>> A.members
('__module__', 'one', 'two', 'three', 'four')
('__module__', 'one', 'two', 'three', 'four')
When the class definition for *A* get
executed, the first step is calling the
When the class definition for *A* get
s executed, the process begins with
metaclass's :meth:`__prepare__` method which returns an empty
calling the
metaclass's :meth:`__prepare__` method which returns an empty
:class:`collections.OrderedDict`. That mapping records the methods and
:class:`collections.OrderedDict`. That mapping records the methods and
attributes of *A* as they are defined within the body of the class statement.
attributes of *A* as they are defined within the body of the class statement.
Once those definitions are executed, the ordered dict
is fully populated, an
d
Once those definitions are executed, the ordered dict
ionary is fully populate
d
then 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
saves the keys for the ordered dictionary
in an attribute
the new type and
it saves the ordered dictionary keys
in an attribute
called *members*.
called *members*.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment