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 brett.cannon, rhettinger
Date 2008-05-26.03:49:08
SpamBayes Score 0.096790425
Marked as misclassified No
Message-id <1211773827.42.0.300486912593.issue2876@psf.upfronthosting.co.za>
In-reply-to
Content
UserDict.UserDict is gone.
UserDict.IterableUserDict class is now collections.UserDict.
UserDict.Mixin is now collections.MutableMapping.

The new classes comform to the new dict API, so they fixer needs to 
also make same method adaptatations as for dicts (i.e. d.keys() --> list
(d.keys() and d.has_key --> d.__contains__).
History
Date User Action Args
2008-05-26 03:50:34rhettingersetspambayes_score: 0.0967904 -> 0.096790425
recipients: + rhettinger, brett.cannon
2008-05-26 03:50:30rhettingersetspambayes_score: 0.0967904 -> 0.0967904
messageid: <1211773827.42.0.300486912593.issue2876@psf.upfronthosting.co.za>
2008-05-26 03:50:21rhettingerlinkissue2876 messages
2008-05-26 03:49:25rhettingercreate