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
Considering this and this, the non-zero bits are being truncated here.
For example:
>>> from random import Random >>> format(Random().getrandbits(64) - 1, "032x") '0000000000000000bff1e96093d533ac' >>> format(Random().getrandbits(64) - 1, "032x")[:16] '0000000000000000' >>> format(Random().getrandbits(64) - 1, "032x")[16:] 'cd60576d046d97a7'
The text was updated successfully, but these errors were encountered:
Truncate LSb
1e45148
Fixes #85
ocelotl
Successfully merging a pull request may close this issue.
Considering this and this, the non-zero bits are being truncated here.
For example:
The text was updated successfully, but these errors were encountered: