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 eric.frederich
Recipients eric.araujo, eric.frederich, eric.snow, rhettinger
Date 2015-07-24.17:40:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437759609.91.0.147615352417.issue24685@psf.upfronthosting.co.za>
In-reply-to
Content
Éric (Araujo),

Combinding defaultdict and OrderedDict is a little easier since one of them (defaultdict) has special behavior on getitem while the other (OrderedDict) has special behavior on setitem.

I played with mixing those two myself and saw some issues and found that I had to explicitly call __init__ on both base classes to get them primed properly.
History
Date User Action Args
2015-07-24 17:40:09eric.frederichsetrecipients: + eric.frederich, rhettinger, eric.araujo, eric.snow
2015-07-24 17:40:09eric.frederichsetmessageid: <1437759609.91.0.147615352417.issue24685@psf.upfronthosting.co.za>
2015-07-24 17:40:09eric.frederichlinkissue24685 messages
2015-07-24 17:40:09eric.frederichcreate