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 rhettinger
Recipients benjamin.peterson, elias, eric.araujo, rhettinger
Date 2010-12-01.05:19:27
SpamBayes Score 0.0018619214
Marked as misclassified No
Message-id <1291180769.47.0.554151038443.issue10592@psf.upfronthosting.co.za>
In-reply-to
Content
I'll discuss with Benjamin.  This could be construed as a simple bug fix.  The code is already in Py3.1.

Line 155:
- items = _sorted(object.items())
+ items = (list if issubclass(typ, OrderedDict) else _sorted)(object.items())
History
Date User Action Args
2010-12-16 09:12:56rhettingerunlinkissue10592 messages
2010-12-01 05:19:29rhettingersetrecipients: + rhettinger, benjamin.peterson, eric.araujo, elias
2010-12-01 05:19:29rhettingersetmessageid: <1291180769.47.0.554151038443.issue10592@psf.upfronthosting.co.za>
2010-12-01 05:19:27rhettingerlinkissue10592 messages
2010-12-01 05:19:27rhettingercreate