Message 276875 - Python tracker (original) (raw)

Message276875

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:17 xiang.zhang set recipients: + xiang.zhang, vstinner, methane, serhiy.storchaka
2016-09-18 09:12:17 xiang.zhang set messageid: 1474189937.19.0.989951317436.issue28194@psf.upfronthosting.co.za
2016-09-18 09:12:17 xiang.zhang link issue28194 messages
2016-09-18 09:12:16 xiang.zhang create