Skip to content
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

Non-zero bits are being truncated #85

Closed
ocelotl opened this issue Dec 9, 2019 · 0 comments · Fixed by #86
Closed

Non-zero bits are being truncated #85

ocelotl opened this issue Dec 9, 2019 · 0 comments · Fixed by #86
Assignees
Labels

Comments

@ocelotl
Copy link
Contributor

ocelotl commented Dec 9, 2019

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'
@ocelotl ocelotl added the bug label Dec 9, 2019
@ocelotl ocelotl self-assigned this Dec 9, 2019
ocelotl added a commit that referenced this issue Dec 9, 2019
@ocelotl ocelotl mentioned this issue Dec 9, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant