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
Date 2006-02-21.15:41:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=80475

Py_CLEAR() is a macro defined in object.h.  See example 
uses in enumobject.c, genobject.c, and itertobject.c.

DictMixin should add the on_missing() method, leaving the 
responsibility for calling it to core object's __getitem__ 
method.  That will likely never happen, but it does allow 
the mapping API to be emulated as fully as possible.  Add 
the method right at the very end (after __len__).
History
Date User Action Args
2007-08-23 15:45:48adminlinkissue1433928 messages
2007-08-23 15:45:48admincreate