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 christian.heimes, collinwinter, rhettinger
Date 2008-02-05.08:12:00
SpamBayes Score 0.10475401
Marked as misclassified No
Message-id <1202199122.74.0.664819882868.issue2012@psf.upfronthosting.co.za>
In-reply-to
Content
The difference is the underlying methods.  DictMixin depended on 
getitem, setitem, delitem, and keys.  MutableMapping doesn't need keys 
but wants __iter__ and __len__.  Also, DictMixin did not insist on all 
of those being present, while MutableMapping won't let you skip any 
(with delitem being the one most likely omitted).
History
Date User Action Args
2008-02-05 08:12:03rhettingersetspambayes_score: 0.104754 -> 0.10475401
recipients: + rhettinger, collinwinter, christian.heimes
2008-02-05 08:12:02rhettingersetspambayes_score: 0.104754 -> 0.104754
messageid: <1202199122.74.0.664819882868.issue2012@psf.upfronthosting.co.za>
2008-02-05 08:12:01rhettingerlinkissue2012 messages
2008-02-05 08:12:00rhettingercreate