Eric Snow added the comment:

OrderedDict has a C implementation now.  So try the following:

try:
    from _collections import OrderedDict
except ImportError:
    from collections import OrderedDict

----------
nosy: +eric.snow

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25147>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to