Documentation
In the documentation for 3.12 and 3.13 the example is incorrect for the documentation of enum.Enum.__new__.
Quote:
from enum import Enum
class MyIntEnum(Enum):
SEVENTEEN = '1a', 16
results in the call int('1a', 16) and a value of 17 for the member.
Should be:
from enum import Enum
class MyIntEnum(int, Enum):
SEVENTEEN = '1a', 16
results in the call int('1a', 16) and a value of 26 for the member.
Additionally, the code example is followed by a note which is not resolving correctly (seemingly because it is missing a space):

Linked PRs
Documentation
In the documentation for 3.12 and 3.13 the example is incorrect for the documentation of
enum.Enum.__new__.Quote:
Should be:
Additionally, the code example is followed by a

notewhich is not resolving correctly (seemingly because it is missing a space):Linked PRs
enum.Enum.__new__#118311enum.Enum.__new__(GH-118311) #118699