[issue40282] random.getrandbits(0) should succeed

Raymond Hettinger report at bugs.python.org
Tue Apr 14 16:03:51 EDT 2020


Raymond Hettinger <raymond.hettinger at gmail.com> added the comment:

+0 for having getrandbits(0) return 0.  Conceptually, it is reasonable.  Practically, it is a bit inconvenient because the ValueError may have to be moved upstream to the _randbelow() methods.

-1 for getrandbytes().  That is feature creep and no user has requested it.  Also, the name leads to a confusing API with getrandbits() returning arbitrary sized python ints and getrandbytes() returning bytes.  Lastly, it mostly duplicates functionality already supplied by secrets.token_bytes().  If you really want this, open another tracker issue and don't derail the issue at hand.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue40282>
_______________________________________


More information about the Python-bugs-list mailing list