New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
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
[3.11] gh-93035: [Enum] Fix IntFlag crash when no single-bit members (GH-93076) #93197
Conversation
Status check is done, and it's a success |
Status check is done, and it's a success |
1 similar comment
Status check is done, and it's a success |
…ythonGH-93076) `EnumType` attempts to create a custom docstring for each enum/flag, but that was failing with pathological flags that had no members (only multi-bit aliases). (cherry picked from commit 08cfc3d) Co-authored-by: Tobin Yehle <tobinyehle@gmail.com>
56449d4
to
34b4f53
Compare
Status check is done, and it's a success |
4 similar comments
Status check is done, and it's a success |
Status check is done, and it's a success |
Status check is done, and it's a success |
Status check is done, and it's a success |
Just ran into the same issue on 3.11b1. Applying this on top of the current 3.11 branch fixes things for me.
EnumType
attempts to create a custom docstring for each enum/flag, but that was failing with pathological flags that had no members (only multi-bit aliases).(cherry picked from commit 08cfc3d)
Co-authored-by: Tobin Yehle tobinyehle@gmail.com