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 skip.montanaro
Recipients lehmannro, rhettinger, skip.montanaro, wangchun
Date 2009-05-26.12:37:58
SpamBayes Score 6.7461037e-12
Marked as misclassified No
Message-id <1243341480.46.0.504538534328.issue6105@psf.upfronthosting.co.za>
In-reply-to
Content
I can't see that the order of keys should matter for language-neutral
serialization libs like json or xmlrpclib.  You're quite possibly
going to be communicating with something on the other end which doesn't
have an OrderedDict-like class.  Why add the extra complication to the
library?

Even with Python of recent enough vintage at both ends, I can't see
that you could dumps() an OrderedDict then loads() the resulting
string and get an OrderedDict out as a result.  You should get a dict,
right?
History
Date User Action Args
2009-05-26 12:38:00skip.montanarosetrecipients: + skip.montanaro, rhettinger, lehmannro, wangchun
2009-05-26 12:38:00skip.montanarosetmessageid: <1243341480.46.0.504538534328.issue6105@psf.upfronthosting.co.za>
2009-05-26 12:37:59skip.montanarolinkissue6105 messages
2009-05-26 12:37:58skip.montanarocreate