python-frozendict icon indicating copy to clipboard operation
python-frozendict copied to clipboard

Should frozendict be ordered as of Python 3.7?

Open w0rp opened this issue 5 years ago • 0 comments

Hello! I have a question, and I'm wondering if this is just something that can be clarified prominently in documentation, or if it's something that can be changed in the implementation. As of Python 3.7, dict is ordered by insertion order, and OrderedDict is now redundant. This can be seen in the "What's New" page, and was decreed by Guido: https://docs.python.org/3/whatsnew/3.7.html

Should frozendict also be made to remember the insertion order officially, to match the newer behaviour of dict, if and only if you're using Python 3.7?

w0rp avatar Jan 31 '20 14:01 w0rp