diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-04-15 10:01:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 10:01:15 (GMT) |
commit | 7d0be7aea569b3bc9a3936501d7d32af87c70e73 (patch) | |
tree | dacc4d66cdb2a56fd02b4f8c7c96741f7839015a /Doc/whatsnew | |
parent | 57bdb75975ff90f95248c59fda34345f3bfff3c4 (diff) | |
download | cpython-7d0be7aea569b3bc9a3936501d7d32af87c70e73.zip cpython-7d0be7aea569b3bc9a3936501d7d32af87c70e73.tar.gz cpython-7d0be7aea569b3bc9a3936501d7d32af87c70e73.tar.bz2 |
Add 'The Python 2.3 Method Resolution Order' (#116435)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.3.rst b/Doc/whatsnew/2.3.rst index 37cd41a..8adf36e 100644 --- a/Doc/whatsnew/2.3.rst +++ b/Doc/whatsnew/2.3.rst @@ -1084,7 +1084,7 @@ Here are all of the changes that Python 2.3 makes to the core Python language. C3 algorithm as described in the paper `"A Monotonic Superclass Linearization for Dylan" <https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.19.3910>`_. To understand the motivation for this change, read Michele Simionato's article - `"Python 2.3 Method Resolution Order" <http://www.phyast.pitt.edu/~micheles/mro.html>`_, or + :ref:`python_2.3_mro`, or read the thread on python-dev starting with the message at https://mail.python.org/pipermail/python-dev/2002-October/029035.html. Samuele Pedroni first pointed out the problem and also implemented the fix by coding the |