Add 'The Python 2.3 Method Resolution Order' (#116435)

This commit is contained in:
Hugo van Kemenade 2024-04-15 13:01:15 +03:00 committed by GitHub
parent 57bdb75975
commit 7d0be7aea5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 679 additions and 11 deletions

View file

@ -665,7 +665,7 @@ class, that calls each parent only once, and that is monotonic (meaning that a
class can be subclassed without affecting the precedence order of its parents).
Taken together, these properties make it possible to design reliable and
extensible classes with multiple inheritance. For more detail, see
https://www.python.org/download/releases/2.3/mro/.
:ref:`python_2.3_mro`.
.. _tut-private: