[issue30245] possible overflow when organize struct.pack_into error message

2017-06-01 Thread Xiang Zhang
Changes by Xiang Zhang : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue30245] possible overflow when organize struct.pack_into error message

2017-06-01 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset aead53b6ee27915de248b07de509529174aaad21 by Xiang Zhang (Johan Liu) in branch 'master': bpo-30245: Fix possible overflow when organize struct.pack_into error message (#1682) https://github.com/python/cpython/commit/aead53b6ee27915de248b07de509529174

[issue30245] possible overflow when organize struct.pack_into error message

2017-05-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Extension Modules stage: needs patch -> patch review ___ Python tracker ___ ___ Python-b

[issue30245] possible overflow when organize struct.pack_into error message

2017-05-20 Thread Yuan Liu
Changes by Yuan Liu : -- pull_requests: +1777 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue30245] possible overflow when organize struct.pack_into error message

2017-05-03 Thread Xiang Zhang
New submission from Xiang Zhang: In #29649, struct.pack_into's error message was improved. But the message could be confusing encountering a large offset due to overflow: >>> struct.pack_into('I', bytearray(10), sys.maxsize, 1) Traceback (most recent call last): File "", line 1, in struct.er