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 xiang.zhang
Recipients methane, rhettinger, serhiy.storchaka, xiang.zhang
Date 2016-09-19.03:16:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474255014.69.0.0387905626228.issue28199@psf.upfronthosting.co.za>
In-reply-to
Content
Then how about entries(key, value pairs)? The size of entries does not match the available hash slots. For example, an empty dict allocates a hash array with 5 available slots and 5 entries. Now we resize the hash array to size 16 and it can afford 10 entries but you only get room for 5 entries. How could we insert the 6th entry?
History
Date User Action Args
2016-09-19 03:16:54xiang.zhangsetrecipients: + xiang.zhang, rhettinger, methane, serhiy.storchaka
2016-09-19 03:16:54xiang.zhangsetmessageid: <1474255014.69.0.0387905626228.issue28199@psf.upfronthosting.co.za>
2016-09-19 03:16:54xiang.zhanglinkissue28199 messages
2016-09-19 03:16:53xiang.zhangcreate