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 rhettinger
Recipients hongweipeng, r.david.murray, raumzeitkeks, rhettinger, xtreak
Date 2018-10-17.04:38:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539751104.87.0.788709270274.issue31218@psf.upfronthosting.co.za>
In-reply-to
Content
This is likely an implementation artifact.  In the abstract API, both PyObject_DelItem() and PyObject_SetItem() route through the same slot, m->mp_ass_subscript.  The set and delete operations are only differentiated in the downstream concrete APIs.  When the *value* parameter is NULL, the operation is deemed to be a deletion.
History
Date User Action Args
2018-10-17 04:38:24rhettingersetrecipients: + rhettinger, r.david.murray, raumzeitkeks, hongweipeng, xtreak
2018-10-17 04:38:24rhettingersetmessageid: <1539751104.87.0.788709270274.issue31218@psf.upfronthosting.co.za>
2018-10-17 04:38:24rhettingerlinkissue31218 messages
2018-10-17 04:38:24rhettingercreate