Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Doc/howto/mro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -667,5 +667,4 @@ Resources
.. [#] The paper *A Monotonic Superclass Linearization for Dylan*:
https://doi.org/10.1145/236337.236343
.. [#] Guido van Rossum's essay, *Unifying types and classes in Python 2.2*:
https://web.archive.org/web/20140210194412/http://www.python.org/download/releases/2.2.2/descrintro
Copy link
Copy Markdown
Contributor

@ByteFlowing1337 ByteFlowing1337 Apr 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn’t this URL valid and can be opened? The dead URL mentioned in the issue #148909 seems just because that website does not support TLS, but we can visit it via http.

.. [#] Guido van Rossum's essay, *Unifying types and classes in Python 2.2*
2 changes: 1 addition & 1 deletion Lib/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Exceptions raised for bad input
# This is trick for backward compatibility. Since 3.13, we will raise IllegalMonthError instead of
# IndexError for bad month number(out of 1-12). But we can't remove IndexError for backward compatibility.
class IllegalMonthError(ValueError, IndexError):
class IllegalMonthError(ValueError):
def __init__(self, month):
self.month = month
def __str__(self):
Expand Down
Loading