[Python-Dev] How to update namedtuple asdict() to use dict instead of OrderedDict

Ethan Furman ethan at stoneleaf.us
Wed Jan 30 18:37:56 EST 2019


On 01/30/2019 02:55 PM, Paul Moore wrote:
> On Wed, 30 Jan 2019 at 22:35, Raymond Hettinger
> <raymond.hettinger at gmail.com> wrote:
>> My recommendation is Option 4 as being less disruptive and more beneficial than the other options.  In the unlikely event that anyone is currently depending on the reordering methods for the output of _asdict(), the remediation is trivially simple:   nt._asdict() -> OrderedDict(nt.as_dict()).
>>
>> What do you all think?
> 
> +1 from me on option 4.

 From me as well.

--
~Ethan~


More information about the Python-Dev mailing list