On Wednesday, November 8, 2017, Guido van Rossum <guido@python.org> wrote:
It seems there must be at least two threads for each topic worth discussing at all. Therefore I feel compelled to point to https://mail.python.org/pipermail/python-dev/2017-November/150381.html, where I state my own conclusion about dict order.


.
 

Finally: the dict type should not be endowed with other parts of the OrderedDict API, not should other API changes to dict be considered.

Is there an opportunity to support a fast cast to OrderedDict from 3.6 dict?
Can it just copy .keys() into the OrderedDict linked list?Or is there more overhead to the transition?

That'd be great for preserving kwargs' order after a pop() or a del?

def func(**kwargs):
    kwargs = OrderedDict(kwargs)
    arg2 = kwargs.pop('arg2')