Aug. 3, 2021
8:19 p.m.
Thanks for responding Ethan.
On Aug 3, 2021, at 10:48, Ethan Furman <ethan@stoneleaf.us> wrote:
I would rather keep `bchr` and lose the `.fromint()` methods.
To get bytes:
some_var = bchr(65) vs some_var = bytes.fromint(65)
and for bytearrays
some_var = bytearray(bchr(65)) vs some_var = bytearray.from_int(65)
Can you provide some rationale for why you prefer bchr() over .fromint()? Cheers, -Barry