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 vstinner
Recipients python-dev, serhiy.storchaka, vstinner
Date 2017-01-03.01:42:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483407759.23.0.0779048683052.issue28870@psf.upfronthosting.co.za>
In-reply-to
Content
In Python 3.5, PyObject_CallFunctionObjArgs() calls objargs_mktuple() which uses Py_VA_COPY(countva, va) and creates a tuple. The tuple constructor uses a free list to reduce the cost of heap memory allocations.
History
Date User Action Args
2017-01-03 01:42:39vstinnersetrecipients: + vstinner, python-dev, serhiy.storchaka
2017-01-03 01:42:39vstinnersetmessageid: <1483407759.23.0.0779048683052.issue28870@psf.upfronthosting.co.za>
2017-01-03 01:42:39vstinnerlinkissue28870 messages
2017-01-03 01:42:38vstinnercreate