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 jimmy
Recipients jimmy
Date 2018-10-29.08:21:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540801262.05.0.788709270274.issue35102@psf.upfronthosting.co.za>
In-reply-to
Content
The result of variable "a" should be b'30\x11\x00\x00' not b'0\x11\x00\x00' .

>>> import struct
>>> a = struct.pack("<i",4400)
>>> print(a)
b'0\x11\x00\x00'
>>>
History
Date User Action Args
2018-10-29 08:21:02jimmysetrecipients: + jimmy
2018-10-29 08:21:02jimmysetmessageid: <1540801262.05.0.788709270274.issue35102@psf.upfronthosting.co.za>
2018-10-29 08:21:02jimmylinkissue35102 messages
2018-10-29 08:21:01jimmycreate