This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ADechaume
Recipients ADechaume
Date 2012-10-18.09:33:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350552813.45.0.500801824963.issue16276@psf.upfronthosting.co.za>
In-reply-to
Content
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)])
History
Date User Action Args
2012-10-18 09:33:33ADechaumesetrecipients: + ADechaume
2012-10-18 09:33:33ADechaumesetmessageid: <1350552813.45.0.500801824963.issue16276@psf.upfronthosting.co.za>
2012-10-18 09:33:33ADechaumelinkissue16276 messages
2012-10-18 09:33:33ADechaumecreate