-
Notifications
You must be signed in to change notification settings - Fork 34
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
Small incompatibility with Python 3.14 #121
Comments
It's actually the line bellow: Lines 868 to 869 in 431e522
That causes this. See the test failure:
|
frenzymadness
added a commit
to frenzymadness/boolean.py
that referenced
this issue
Nov 11, 2024
Using NotImplemented in a boolean context will now raise a TypeError. It had previously raised a DeprecationWarning since Python 3.9. Fixes: bastikr#121
frenzymadness
added a commit
to frenzymadness/boolean.py
that referenced
this issue
Nov 18, 2024
Using NotImplemented in a boolean context will now raise a TypeError. It had previously raised a DeprecationWarning since Python 3.9. Fixes: bastikr#121
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is no longer allowed in Python 3.14:
boolean.py/boolean/boolean.py
Line 868 in 431e522
According to https://docs.python.org/3.14/whatsnew/3.14.html:
Using NotImplemented in a boolean context will now raise a TypeError. It had previously raised a DeprecationWarning since Python 3.9. (Contributed by Jelle Zijlstra in gh-118767.)
The text was updated successfully, but these errors were encountered: