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 methane
Recipients methane, vstinner
Date 2016-11-18.11:03:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479466985.37.0.124038643632.issue28731@psf.upfronthosting.co.za>
In-reply-to
Content
_PyDict_NewPresized(6) creates dict which keysize is 8.
But it's capacity is 5 (8 * 2 // 3 = 5).

This internal API is used by BUILD_MAP and BUILD_CONST_KEYMAP.
History
Date User Action Args
2016-11-18 11:03:05methanesetrecipients: + methane, vstinner
2016-11-18 11:03:05methanesetmessageid: <1479466985.37.0.124038643632.issue28731@psf.upfronthosting.co.za>
2016-11-18 11:03:05methanelinkissue28731 messages
2016-11-18 11:03:05methanecreate