Skip to content
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

Adds StrEnum support for python3.11 #12035

Merged
merged 2 commits into from
Feb 9, 2022
Merged

Adds StrEnum support for python3.11 #12035

merged 2 commits into from
Feb 9, 2022

Conversation

sobolevn
Copy link
Member

Since there are already a couple of alpha versions available, I think it might be a good idea to add support for some new python features.

For example, now subclasses of StrEnum will be treated as real Enums!


# It is python-3.11+ only:
class StrEnum(str, Enum):
def __new__(cls: Type[_T], value: int | _T) -> _T: ...
Copy link
Member

Choose a reason for hiding this comment

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

Over at typeshed I corrected this to

    def __new__(cls: Type[_T], value: str | _T) -> _T: ...

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, sure. This is a typo. Thanks!

Copy link
Member

@AlexWaygood AlexWaygood Jan 21, 2022

Choose a reason for hiding this comment

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

No problem — thanks for working on the PR! 😀

@JelleZijlstra
Copy link
Member

Did we turn off 3.11 CI completely? I don't see it in the list.

@97littleleaf11
Copy link
Collaborator

Yeah we just turned if off. #12003 (comment)

@sobolevn sobolevn mentioned this pull request Feb 6, 2022
@hauntsaninja hauntsaninja merged commit 37d58c3 into python:master Feb 9, 2022
sobolevn added a commit that referenced this pull request Feb 22, 2022
After merging #11805 I found out that we are missing several new `Enum` features.

This PR adds them to the docs.

Refs #12026
Refs #12035
@sobolevn sobolevn mentioned this pull request Feb 22, 2022
hauntsaninja pushed a commit that referenced this pull request Feb 23, 2022
After merging #11805 I found out that we are missing several new `Enum` features.

This PR adds them to the docs.

Refs #12026
Refs #12035
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants