STINNER Victor <victor.stin...@gmail.com> added the comment:

Writing code compatible with Python older than 3.5 (like Python 2.7) requires 
to use OrderedDict. I expect that very few users will use "dict if 
sys.version_info >= (3, 6) else OrderedDict" to get an ordered dict.

OrderedDict remains useful when you need the methods added by the OrderedDict 
type.

----------

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

Reply via email to