Use StrEnum from the standard library if available #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This allows people to just import from
backports.strenum
on Python 3.11 and still get the version from the standard library. Otherwise you need the if statement on every import.I used
if sys.version_info >= (3, 11)
instead oftry: from enum import StrEnum; except ImportError ...
because static type checkers know how to interpret the former, but struggle with the latter. And it seems it won't get fixed. See for example this comment on mypy: python/mypy#1153 (comment)