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 shihai1991
Recipients shihai1991
Date 2019-10-13.14:57:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570978635.87.0.596564542888.issue38465@roundup.psfhosted.org>
In-reply-to
Content
for a code example:
```
v = []
b = bytearray(0xffff)
for i in range(2**31+1)
    # the ob_exports would be overflow in 32 bit machine when i = 2**31.
    v.append(memoryview(b))
```
IMHO, i thought converting the type of ob_exports to Py_ssize_t is fine.

PS: I have no actual user scenario.
History
Date User Action Args
2019-10-13 14:57:15shihai1991setrecipients: + shihai1991
2019-10-13 14:57:15shihai1991setmessageid: <1570978635.87.0.596564542888.issue38465@roundup.psfhosted.org>
2019-10-13 14:57:15shihai1991linkissue38465 messages
2019-10-13 14:57:15shihai1991create