Re: [Python-Dev] Fw:[issue34221] Any plans to combine collections.OrderedDict with dict

2018-07-25 Thread INADA Naoki
On Thu, Jul 26, 2018 at 12:04 PM Zhao Lee wrote: > > > Since Python 3.7,dicts remember the order that items were inserted, so any > plans to combine collections.OrderedDict with dict? > https://docs.python.org/3/library/collections.html?#collections.OrderedDict > https://docs.python.org/3/library

[Python-Dev] Fw:[issue34221] Any plans to combine collections.OrderedDict with dict

2018-07-25 Thread Zhao Lee
Since Python 3.7,dicts remember the order that items were inserted, so any plans to combine collections.OrderedDict with dict? https://docs.python.org/3/library/collections.html?#collections.OrderedDict https://docs.python.org/3/library/stdtypes.html#dict BTW, I think it would be better to move