Message366392
| Author |
pitrou |
| Recipients |
mark.dickinson, pitrou, rhettinger, steven.daprano |
| Date |
2020年04月14日.15:32:35 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1586878355.33.0.583777817655.issue40282@roundup.psfhosted.org> |
| In-reply-to |
| Content |
When creating variable-sized random binary strings with random.getrandbits(), you currently have to special case when the number of bytes is 0, because otherwise getrandbits() raises:
ValueError: number of bits must be greater than zero
It seems like it wouldn't hurt to simply return 0 in that case.
The actual snippet looks something like:
random.getrandombits(nbytes * 8).to_bytes(nbytes, 'little') |
|