8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Does this make sense, and/or is it desirable?
b = np.iinfo(np.bool_) assert(b.min == 0) assert(b.max == 1) assert(b.bits == ???)
The text was updated successfully, but these errors were encountered:
Seems reasonable as booleans are promoted to integers during arithmetic with integers and also work with the standard comparison operators.
Sorry, something went wrong.
Remove iinfo for bool array
8de03b7
np.iinfo is not implemented for bool type (yet). xref: numpy/numpy#8849
2e50d2d
Remove iinfo for bool array (#687)
516ab72
No branches or pull requests
Does this make sense, and/or is it desirable?
The text was updated successfully, but these errors were encountered: