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 martin.panter
Recipients Jeffrey.Walton, alex, alexandre.vassalotti, deadshort, dmalcolm, donmez, fweimer, jcea, jwilk, loewis, mark.dickinson, martin.panter, matejcik, nnorwitz, pitrou, python-dev, serhiy.storchaka, vstinner, xiang.zhang, ztane
Date 2016-08-06.00:59:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470445143.13.0.47165116539.issue1621@psf.upfronthosting.co.za>
In-reply-to
Content
Xiang: regarding your overflow_fix_in_listextend.patch, what do you think about adding a comment or debugging assertion instead, something like:

/* It should not be possible to allocate a list large enough to cause an overflow on any relevant platform */
assert(m < PY_SSIZE_T_MAX - n);
History
Date User Action Args
2016-08-06 00:59:03martin.pantersetrecipients: + martin.panter, loewis, nnorwitz, jcea, mark.dickinson, pitrou, vstinner, alexandre.vassalotti, donmez, matejcik, jwilk, alex, dmalcolm, python-dev, deadshort, serhiy.storchaka, ztane, fweimer, Jeffrey.Walton, xiang.zhang
2016-08-06 00:59:03martin.pantersetmessageid: <1470445143.13.0.47165116539.issue1621@psf.upfronthosting.co.za>
2016-08-06 00:59:03martin.panterlinkissue1621 messages
2016-08-06 00:59:02martin.pantercreate