[Python-Dev] Re: PEP 467 feedback from the Steering Council

2021年9月09日 11:01:52 -0700

On 9/9/21 9:37 AM, Barry Warsaw wrote:
> While I think int.to_bytes() is pretty obscure (I knew about it, forgot about 
it, and learned
> about it again!) I’m not so sure it’s any less obscure than a proposed 
bytes.fromint().
>
> So why don’t we just relax int.to_bytes()’s signature to include natural 
default values:
>
> int.to_bytes(length=1, byteorder=sys.byteorder, *, signed=False)
>
> Then I ought to be able to just do
>
> >>> (65).to_bytes()
> b’A’
That seems so much worse than
 >>> bchr(65)
 b'A'
;-)
--
~Ethan~
_______________________________________________
Python-Dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/[email protected]/message/2XY5B7KIODN4Q5EB6HUKVKMVOV7TPJUH/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to