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 serhiy.storchaka
Recipients methane, rhettinger, serhiy.storchaka, vstinner
Date 2016-12-14.09:59:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481709553.93.0.476557965241.issue28959@psf.upfronthosting.co.za>
In-reply-to
Content
Updated patch addresses Victor's issue. _PyDict_GET_SIZE is renamed to PyDict_GET_SIZE and now it includes an assertion. This is good argument for introducing this macro against using PyDict_Size (without checking the result for error) and Py_SIZE (which doesn't check the type).

> Can someone check if it has an impact of the size of the structure (because of the complex rules of alignment)?

There are special tests for that.

Actually I think that switching to PyObject_VAR_HEAD is different issue. The patch can be pushed without changes to dictobject.c and the structure of a dict.
History
Date User Action Args
2016-12-14 09:59:14serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, vstinner, methane
2016-12-14 09:59:13serhiy.storchakasetmessageid: <1481709553.93.0.476557965241.issue28959@psf.upfronthosting.co.za>
2016-12-14 09:59:13serhiy.storchakalinkissue28959 messages
2016-12-14 09:59:13serhiy.storchakacreate