diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 12:15:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 12:15:05 (GMT) |
commit | a7395038812b4c24f108c9f90b2b9db90c7f237e (patch) | |
tree | 87af05b836ab8f910dfc00c2c33c7e282e6cd28e /Doc/tutorial | |
parent | e7a0990113873e5f0cc5cac203f47a8dcbda9848 (diff) | |
download | cpython-a7395038812b4c24f108c9f90b2b9db90c7f237e.zip cpython-a7395038812b4c24f108c9f90b2b9db90c7f237e.tar.gz cpython-a7395038812b4c24f108c9f90b2b9db90c7f237e.tar.bz2 |
Add :term:s for "new-style class".
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/classes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index d5bde44..e4e8451 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -495,8 +495,8 @@ figure out the consequences of a name conflict with an attribute of :class:`Base2`. The depth-first rule makes no differences between direct and inherited attributes of :class:`Base1`.) -For new-style classes, the method resolution order changes dynamically to -support cooperative calls to :func:`super`. This approach is known in some +For :term:`new-style class`\es, the method resolution order changes dynamically +to support cooperative calls to :func:`super`. This approach is known in some other multiple-inheritance languages as call-next-method and is more powerful than the super call found in single-inheritance languages. |