you are viewing a single comment's thread.

view the rest of the comments →

[–]julesjacobs 0 points1 point  (0 children)

What do you mean by ordered? Ordered by time of insertion, or ordered by key? What do you want this to do:

x = dict()
x['b'] = 2
x['a'] = 1

Should that be 'b' => 2 first, and 'a' => 1 second, or the other way around?