-
Notifications
You must be signed in to change notification settings - Fork 0
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
@unique
errors
#1
Comments
strange, i don't get this error (clearly)... but i'm using python 3.10 I don't understand why this error, the TokenType enum has the but we know this parts of the python Enum got intervened between 3.10 and 3.11.
something warrants a deeper dive... without having yet figured this out, I blame python, it's their bug my code is perfect 😂😅 |
In python 3.10 there is no such a thing as |
Yeah, it's weird that the 3.11 changelog doesn't mention changes to |
it's a python bug, a regression of some kind. They have been tweaking enum.py |
How can it be an existing bug in 3.11.3 if both of those are marked fixed/merged in 2022 and 3.11.3 was released last month? |
it's an exisiting bug cuz we just found it, but it's not a known bug, so far as I've looked. |
Ah, ok, I understand. Looking at the 91456, that is about aliases, which you don't have. And 91457 was backported as 94156 (note how that is not 91456) which suggests that it should only emit a DeprecationWarning but still work, which it doesn't. |
so I suppose that your solution, of using
|
I made a fix for this, but I haven't bothered to update my local python version, could you test it? this is the fix e1d7426#diff-69834159763133611b2ce61f9c7fdd35941c705fc1520ce40f294c9b208852a6L12 |
on commit bf4507b
trying the command in the readme is erroring
Changing Enum to StrEnum seems to work.
The text was updated successfully, but these errors were encountered: