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 eric.snow
Recipients barry, eli.bendersky, eric.snow, ethan.furman, serhiy.storchaka, vstinner
Date 2015-09-17.16:14:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442506444.73.0.236521983645.issue25147@psf.upfronthosting.co.za>
In-reply-to
Content
OrderedDict has a C implementation now.  So try the following:

try:
    from _collections import OrderedDict
except ImportError:
    from collections import OrderedDict
History
Date User Action Args
2015-09-17 16:14:04eric.snowsetrecipients: + eric.snow, barry, vstinner, eli.bendersky, ethan.furman, serhiy.storchaka
2015-09-17 16:14:04eric.snowsetmessageid: <1442506444.73.0.236521983645.issue25147@psf.upfronthosting.co.za>
2015-09-17 16:14:04eric.snowlinkissue25147 messages
2015-09-17 16:14:04eric.snowcreate