-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use dict instead of OrderedDict #6566
Comments
I believe I found one specific use of OrderedDict, namely
The standard |
good catch!
I guess. The key would be the first one. If a singular use, could be just applied as above without carrying to create a helper. |
done in #7174 |
Issue fixed in |
dict
is ordered now in versions of python we support. And according to https://realpython.com/python-ordereddict/ -dict
seems to generally outperformOrderedDict
in CPU and memory, and I don't think we use any of specific to OrderedDict functionality.I think it would not hurt to just switch to just use
dict
.The text was updated successfully, but these errors were encountered: