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 sir-sigurd
Recipients sir-sigurd
Date 2018-08-13.19:38:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1534189134.26.0.56676864532.issue34397@psf.upfronthosting.co.za>
In-reply-to
Content
Max size of list and tuples is limited by PY_SSIZE_T_MAX / sizeof(PyObject*), so the sum of any two list/tuples sizes always <= PY_SSIZE_T_MAX if sizeof(PyObject*) > 1, which seems true for all supported (existing?) platforms.
It means that overflow checks in app1, ins1, list_concat and tupleconcat are redundant and can be safely removed.
History
Date User Action Args
2018-08-13 19:38:54sir-sigurdsetrecipients: + sir-sigurd
2018-08-13 19:38:54sir-sigurdsetmessageid: <1534189134.26.0.56676864532.issue34397@psf.upfronthosting.co.za>
2018-08-13 19:38:54sir-sigurdlinkissue34397 messages
2018-08-13 19:38:54sir-sigurdcreate