2009/6/16 Terry Reedy <tjreedy@udel.edu>

When you read OrderedDict([('a', '1'),('b', '2'), ('c', '3')]),

OrderedDict({'a':1', 'b':'2', 'c':'3'}]


Wouldn't you lose the ordering in that case?

OrderedDict({'c':'3', 'a':'1', 'b':'2'}) produces the same result as the above.