[issue16276] OrderedDict constructor do not keep items order
Antoine Dechaume added the comment: I did read the docs before submitting, obviously my brain was not plugged in. I am sorry for the noise. -- ___ Python tracker <http://bugs.python.org/issue16
[issue16276] OrderedDict constructor do not keep items order
New submission from Antoine Dechaume: Example: from collections import OrderedDict print OrderedDict(a=0,b=1,c=2) I get OrderedDict([('a', 0), ('c', 2), ('b', 1)]) I expected OrderedDict([('a', 0), ('b', 1), ('c', 2)]) -