-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Incorrect example in docs for enum.Enum.__new__ #118310
New issue
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
docs
Documentation in the Doc dir
Comments
encukou
pushed a commit
that referenced
this issue
May 7, 2024
The provided example was incorrect: - The example enum was missing the `int` mixin as implied by the context - The value of `int('1a', 16)` was incorrectly given as 17 (should be 26)
encukou
pushed a commit
that referenced
this issue
May 7, 2024
… (GH-118699) gh-118310: Fix documentation for `enum.Enum.__new__` (GH-118311) The provided example was incorrect: - The example enum was missing the `int` mixin as implied by the context - The value of `int('1a', 16)` was incorrectly given as 17 (should be 26) (cherry picked from commit 48e52fe) Co-authored-by: Momo Eissenhauer <mmEissen@users.noreply.github.com>
SonicField
pushed a commit
to SonicField/cpython
that referenced
this issue
May 8, 2024
…118311) The provided example was incorrect: - The example enum was missing the `int` mixin as implied by the context - The value of `int('1a', 16)` was incorrectly given as 17 (should be 26)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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

note
which is not resolving correctly (seemingly because it is missing a space):Linked PRs
enum.Enum.__new__
#118311enum.Enum.__new__
(GH-118311) #118699The text was updated successfully, but these errors were encountered: