This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients asvetlov, docs@python, ezio.melotti, paddy3118, serhiy.storchaka, woparry
Date 2013-05-25.21:39:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369517958.79.0.514940765486.issue16580@psf.upfronthosting.co.za>
In-reply-to
Content
I don't call it the examples. Here is the examples:

>>> (1234).to_bytes(2, 'big')
b'\x04\xd2'
>>> (1234).to_bytes(2, 'little')
b'\xd2\x04'
>>> (-1234).to_bytes(2, 'big', signed=True)
b'\xfb.'
>>> int.from_bytes(b'\xde\xad\xbe\xef', 'big')
3735928559
>>> int.from_bytes(b'\xde\xad\xbe\xef', 'little')
4022250974
>>> int.from_bytes(b'\xde\xad\xbe\xef', 'big', signed=True)
-559038737
History
Date User Action Args
2013-05-25 21:39:18serhiy.storchakasetrecipients: + serhiy.storchaka, paddy3118, ezio.melotti, asvetlov, docs@python, woparry
2013-05-25 21:39:18serhiy.storchakasetmessageid: <1369517958.79.0.514940765486.issue16580@psf.upfronthosting.co.za>
2013-05-25 21:39:18serhiy.storchakalinkissue16580 messages
2013-05-25 21:39:18serhiy.storchakacreate