diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-04-15 11:14:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 11:14:16 (GMT) |
commit | a844e83b06f848ba84f6fad2a171bc6f3191bcc2 (patch) | |
tree | 7e4a7f6c97bfa27c54a371a56ac36138e85cf7e0 /Lib/functools.py | |
parent | 50b94b150e7a5beee565d0977d0afabd0115ab72 (diff) | |
download | cpython-a844e83b06f848ba84f6fad2a171bc6f3191bcc2.zip cpython-a844e83b06f848ba84f6fad2a171bc6f3191bcc2.tar.gz cpython-a844e83b06f848ba84f6fad2a171bc6f3191bcc2.tar.bz2 |
[3.12] Add 'The Python 2.3 Method Resolution Order' (GH-116435) (#117885)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index 2ae4290..1f1ba63 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -660,7 +660,7 @@ def cache(user_function, /): def _c3_merge(sequences): """Merges MROs in *sequences* to a single MRO using the C3 algorithm. - Adapted from https://www.python.org/download/releases/2.3/mro/. + Adapted from https://docs.python.org/3/howto/mro.html. """ result = [] |