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, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-09-18.09:12:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474189937.19.0.989951317436.issue28194@psf.upfronthosting.co.za>
In-reply-to
Content
The proposed patch cleans up some unnecessary parts in dict implementation especially NULL checks in lookup functions. There are four states a DictKeyEntry can be. Only in unused(empty) and dummy states me_key can be NULL. So NULL checks in used and pending states are not needed.
History
Date User Action Args
2016-09-18 09:12:17xiang.zhangsetrecipients: + xiang.zhang, vstinner, methane, serhiy.storchaka
2016-09-18 09:12:17xiang.zhangsetmessageid: <1474189937.19.0.989951317436.issue28194@psf.upfronthosting.co.za>
2016-09-18 09:12:17xiang.zhanglinkissue28194 messages
2016-09-18 09:12:16xiang.zhangcreate