8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
According to this program any value between ...cde0 and ...cdef is equal to uint64 value of ...cdef which was a big surprise
import numpy a = numpy.uint64(0x1234567890abcdef) if a == 0x1234567890abcde0: print("BUG!")
Seems like uint64 is converted to float even when it is compared against standard integers which was another big surprise for me.
The text was updated successfully, but these errors were encountered:
Probably related to #5612.
Sorry, something went wrong.
Looks more like a bug in uint64: #5745
Closing as duplicate of gh-22624
No branches or pull requests
According to this program any value between ...cde0 and ...cdef is equal to uint64 value of ...cdef which was a big surprise
Seems like uint64 is converted to float even when it is compared against standard integers which was another big surprise for me.
The text was updated successfully, but these errors were encountered: