Message366392
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') |
|
| Date |
User |
Action |
Args |
| 2020-04-14 15:32:35 | pitrou | set | recipients:
+ pitrou, rhettinger, mark.dickinson, steven.daprano |
| 2020-04-14 15:32:35 | pitrou | set | messageid: <[email protected]> |
| 2020-04-14 15:32:35 | pitrou | link | issue40282 messages |
| 2020-04-14 15:32:35 | pitrou | create | |
|