I am waiting 3.7 compatibility for dict insertion order which I rely in my last project. I know I could use workarounds but now it is safe and stable and I am not in a hurry. Until then waiting in CPython.
Isn't it explicitly discouraged to rely on dict() being ordered? IIRC the Python standard (if it exists) has collections.OrderedDict() in mind to fulfill ordering. I think when CPython introduced ordering, they warned about that. [No references included, happy if somebody provides some]
3 comments
[ 4.1 ms ] story [ 20.4 ms ] thread> Changed in version 3.7: Dictionary order is guaranteed to be insertion order. This behavior was an implementation detail of CPython from 3.6. [0]
[0] https://docs.python.org/3.7/library/stdtypes.html#typesmappi...