Hacker News new | ask | show | jobs
by snicker7 2689 days ago
As of 3.7 (3.6 for cpython), dictionaries have a deterministic order.
1 comments

What's the best way to write code that relies on this deterministic order and prevent it from running incorrectly with older python versions?
Import collections.OrderedDict as you would have done beforehand. There are still some differences between them.

(Dicts in 3.7 and ordered dicts)

https://stackoverflow.com/questions/50872498/will-ordereddic...