> On Jan 30, 2019, at 9:11 PM, Tim Delaney <timothy.c.dela...@gmail.com> wrote: > > Alternatively, would it be viable to make OrderedDict work in a way that so > long as you don't use any reordering operations it's essentially just a very > thin layer on top of a dict, There's all kinds of tricks we could do but none of them are worth it. It took Eric Snow a long time to write the OrderedDict patch and it took years to get most of the bugs out of it. I would really hate to go through a redesign and eat up our time for something that probably won't be much used any more. I'm really just aiming for something as simple as s/OrderedDict/dict in namedtuple :-) Raymond _______________________________________________ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
- [Python-Dev] How to update namedtuple asdict() to use di... Raymond Hettinger
- Re: [Python-Dev] How to update namedtuple asdict() ... Paul Moore
- Re: [Python-Dev] How to update namedtuple asdic... Ethan Furman
- Re: [Python-Dev] How to update namedtuple asdic... David Mertz
- Re: [Python-Dev] How to update namedtuple asdict() ... Glenn Linderman
- Re: [Python-Dev] How to update namedtuple asdict() ... Gregory P. Smith
- Re: [Python-Dev] How to update namedtuple asdict() ... Barry Warsaw
- Re: [Python-Dev] How to update namedtuple asdict() ... Nathaniel Smith
- Re: [Python-Dev] How to update namedtuple asdic... Raymond Hettinger
- Re: [Python-Dev] How to update namedtuple a... Tim Delaney
- Re: [Python-Dev] How to update namedtup... Raymond Hettinger
- Re: [Python-Dev] How to update namedtuple a... Glenn Linderman
- Re: [Python-Dev] How to update namedtup... Nick Coghlan
- Re: [Python-Dev] How to update nam... Nathaniel Smith
- Re: [Python-Dev] How to update namedtuple asdict() ... Antoine Pitrou
- Re: [Python-Dev] How to update namedtuple asdict() ... eamanu15