René's URL Explorer Experiment


Title: 3.11.4: ValueError when inverting enum.Flag member with mask member · Issue #105497 · python/cpython · GitHub

Open Graph Title: 3.11.4: ValueError when inverting enum.Flag member with mask member · Issue #105497 · python/cpython

X Title: 3.11.4: ValueError when inverting enum.Flag member with mask member · Issue #105497 · python/cpython

Description: With code such as: import enum class Flag(enum.Flag): A = 0x01 B = 0x02 Mask = 0xff print(~Flag.A) Python 3.10.11 prints Flag.B, and so does Python 3.11.3. However, with Python 3.11.4, this happens instead: Traceback (most recent call la...

Open Graph Description: With code such as: import enum class Flag(enum.Flag): A = 0x01 B = 0x02 Mask = 0xff print(~Flag.A) Python 3.10.11 prints Flag.B, and so does Python 3.11.3. However, with Python 3.11.4, this happens...

X Description: With code such as: import enum class Flag(enum.Flag): A = 0x01 B = 0x02 Mask = 0xff print(~Flag.A) Python 3.10.11 prints Flag.B, and so does Python 3.11.3. However, with Python 3.11.4, this happens...

Opengraph URL: https://github.com/python/cpython/issues/105497

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"3.11.4: ValueError when inverting enum.Flag member with mask member","articleBody":"With code such as:\r\n\r\n```python\r\nimport enum\r\n\r\nclass Flag(enum.Flag):\r\n    A = 0x01\r\n    B = 0x02\r\n    Mask = 0xff\r\n\r\nprint(~Flag.A)\r\n```\r\n\r\nPython 3.10.11 prints `Flag.B`, and so does Python 3.11.3. However, with Python 3.11.4, this happens instead:\r\n\r\n```pytb\r\nTraceback (most recent call last):\r\n  File \"/home/florian/tmp/f.py\", line 9, in \u003cmodule\u003e\r\n    print(~Flag.A)\r\n          ^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 1542, in __invert__\r\n    self._inverted_ = self.__class__(self._flag_mask_ ^ self._value_)\r\n                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 711, in __call__\r\n    return cls.__new__(cls, value)\r\n           ^^^^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 1136, in __new__\r\n    raise exc\r\n  File \"/usr/lib/python3.11/enum.py\", line 1113, in __new__\r\n    result = cls._missing_(value)\r\n             ^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 1454, in _missing_\r\n    raise ValueError('%r: no members with value %r' % (cls, unknown))\r\nValueError: \u003cflag 'Flag'\u003e: no members with value 252\r\n```\r\n\r\nAs a workaround, a detour via `.value` works in this case:\r\n\r\n```python\r\n\u003e\u003e\u003e Flag((Flag.A | Flag.B).value \u0026 ~Flag.A.value)\r\n\u003cFlag.B: 2\u003e\r\n```\r\n\r\nThis causes issues with PyQt, which has the following flags ([as bindings from C++](https://github.com/qt/qtbase/blob/v6.5.1/src/corelib/global/qnamespace.h#L1047-L1057)):\r\n\r\n```python\r\n\u003e\u003e\u003e from PyQt6.QtCore import Qt\r\n\u003e\u003e\u003e for e in Qt.KeyboardModifier:\r\n...     print(f\"{e.name} = {hex(e.value)}\")\r\n... \r\nNoModifier = 0x0\r\nShiftModifier = 0x2000000\r\nControlModifier = 0x4000000\r\nAltModifier = 0x8000000\r\nMetaModifier = 0x10000000\r\nKeypadModifier = 0x20000000\r\nGroupSwitchModifier = 0x40000000\r\nKeyboardModifierMask = 0xfe000000\r\n```\r\n\r\n(Output from Python 3.10 - with Python 3.11, `KeyboardModifierMask` goes missing in the output, and so does `Flag.Mask` above, but that seems like a different issue?)\r\n\r\nWith my project, I'm [trying to remove a modifier](https://github.com/qutebrowser/qutebrowser/issues/7735) from the given flags. With Python 3.10.11 and 3.11.3:\r\n\r\n```python\r\n\u003e\u003e\u003e (Qt.KeyboardModifier.ShiftModifier | Qt.KeyboardModifier.ControlModifier) \u0026 ~Qt.KeyboardModifier.ControlModifier\r\n\u003cKeyboardModifier.ShiftModifier: 33554432\u003e\r\n```\r\n\r\nBut with Python 3.11.4, same issue as above:\r\n\r\n```pytb\r\n\u003e\u003e\u003e from PyQt6.QtCore import Qt\r\n\u003e\u003e\u003e (Qt.KeyboardModifier.ShiftModifier | Qt.KeyboardModifier.ControlModifier) \u0026 ~Qt.KeyboardModifier.ControlModifier\r\nTraceback (most recent call last):\r\n  File \"\u003cstdin\u003e\", line 1, in \u003cmodule\u003e\r\n  File \"/usr/lib/python3.11/enum.py\", line 1542, in __invert__\r\n    self._inverted_ = self.__class__(self._flag_mask_ ^ self._value_)\r\n                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 711, in __call__\r\n    return cls.__new__(cls, value)\r\n           ^^^^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 1136, in __new__\r\n    raise exc\r\n  File \"/usr/lib/python3.11/enum.py\", line 1113, in __new__\r\n    result = cls._missing_(value)\r\n             ^^^^^^^^^^^^^^^^^^^^\r\n  File \"/usr/lib/python3.11/enum.py\", line 1454, in _missing_\r\n    raise ValueError('%r: no members with value %r' % (cls, unknown))\r\nValueError: \u003cflag 'KeyboardModifier'\u003e: no members with value 2147483648\r\n```\r\n\r\nAs a culprit, I suspect:\r\n\r\n- #103365\r\n- #103494\r\n- #103513\r\n\r\ncc @ethanfurman @benburrill\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-105542\n* gh-105571\n* gh-105572\n* gh-106468\n* gh-106620\n* gh-106621\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/The-Compiler","@type":"Person","name":"The-Compiler"},"datePublished":"2023-06-08T12:22:42.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":14},"url":"https://github.com/105497/cpython/issues/105497"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:eee7484a-b275-29f8-df92-ef453b157f2b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCC80:292113:6983AC:94867B:696A4C39
html-safe-noncec0b169e8425fe5c6b7d0f95906529cf43080a7bb07b0df4cf0564444c283fb84
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQzgwOjI5MjExMzo2OTgzQUM6OTQ4NjdCOjY5NkE0QzM5IiwidmlzaXRvcl9pZCI6IjE4MjMwMTI4OTc5MTg5NjI3NDUiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacd1f8c7a956b6cdee97e225db226f9c6b4cd50112b90fde4d473ec4fad4aeb363
hovercard-subject-tagissue:1747785896
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/105497/issue_layout
twitter:imagehttps://opengraph.githubassets.com/110f6ef9205921402f41300f273ff0f11b56acce91a0b9ca87358baf4341f011/python/cpython/issues/105497
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/110f6ef9205921402f41300f273ff0f11b56acce91a0b9ca87358baf4341f011/python/cpython/issues/105497
og:image:altWith code such as: import enum class Flag(enum.Flag): A = 0x01 B = 0x02 Mask = 0xff print(~Flag.A) Python 3.10.11 prints Flag.B, and so does Python 3.11.3. However, with Python 3.11.4, this happens...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameThe-Compiler
hostnamegithub.com
expected-hostnamegithub.com
None3f871c8e07f0ae1886fa8dac284166d28b09ad5bada6476fc10b674e489788ef
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release63c426b30d262aba269ef14c40e3c817b384cd61
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/105497#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F105497
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F105497
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/105497
Reloadhttps://github.com/python/cpython/issues/105497
Reloadhttps://github.com/python/cpython/issues/105497
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/105497
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/issues/105497
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/105497
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/105497
3.11.4: ValueError when inverting enum.Flag member with mask memberhttps://github.com/python/cpython/issues/105497#top
https://github.com/ethanfurman
3.11only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.11%22
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
stdlibStandard Library Python modules in the Lib/ directoryhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22stdlib%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%22
https://github.com/The-Compiler
https://github.com/The-Compiler
The-Compilerhttps://github.com/The-Compiler
on Jun 8, 2023https://github.com/python/cpython/issues/105497#issue-1747785896
as bindings from C++https://github.com/qt/qtbase/blob/v6.5.1/src/corelib/global/qnamespace.h#L1047-L1057
trying to remove a modifierhttps://github.com/qutebrowser/qutebrowser/issues/7735
enum.CONFORM behavior breaks backwards compatibility #103365https://github.com/python/cpython/issues/103365
gh-103365: [Enum] STRICT boundary corrections #103494https://github.com/python/cpython/pull/103494
[3.11] gh-103365: [Enum] STRICT boundary corrections (GH-103494) #103513https://github.com/python/cpython/pull/103513
@ethanfurmanhttps://github.com/ethanfurman
@benburrillhttps://github.com/benburrill
gh-105497: [Enum] Fix flag inversion when alias/mask members exist. #105542https://github.com/python/cpython/pull/105542
[3.11] gh-105497: [Enum] Fix Flag inversion when alias/mask members exist. (GH-105542) #105571https://github.com/python/cpython/pull/105571
[3.12] gh-105497: [Enum] Fix Flag inversion when alias/mask members exist. (GH-105542) #105572https://github.com/python/cpython/pull/105572
gh-105497: [Enum] Fix flag mask inversion when unnamed flags exist #106468https://github.com/python/cpython/pull/106468
[3.12] gh-105497: [Enum] Fix flag mask inversion when unnamed flags exist (GH-106468) #106620https://github.com/python/cpython/pull/106620
[3.11] gh-105497: [Enum] Fix flag mask inversion when unnamed flags exist (GH-106468) #106621https://github.com/python/cpython/pull/106621
ethanfurmanhttps://github.com/ethanfurman
3.11only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.11%22
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
stdlibStandard Library Python modules in the Lib/ directoryhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22stdlib%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%22
Release and Deferred blockers 🚫https://github.com/orgs/python/projects/2
enum issueshttps://github.com/orgs/python/projects/38
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.