We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Continue work done in #29923
As of CPython 3.6 the implementation of dict maintains insertion order.
This became a language feature in python 3.7.
Note in python 3.8 support for reversed(dict) was added - but we don't seem to use that in the use cases i've eliminated. ( OrderedDict support this)
Add code check as per comment here: #29923 (comment)
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
from_nested_dict
grepping for OrderedDict i see 29 usages outside of tests; most of those are either in doctests or in pandas.compat.numpy.function
@jbrockmendel think I have a branch somewhere that finishes this up - will push over the weekend.
Ali
alimcmaster1
Successfully merging a pull request may close this issue.
Continue work done in #29923
As of CPython 3.6 the implementation of dict maintains insertion order.
This became a language feature in python 3.7.
Note in python 3.8 support for reversed(dict) was added - but we don't seem to use that in the use cases i've eliminated. ( OrderedDict support this)
Add code check as per comment here: #29923 (comment)
The text was updated successfully, but these errors were encountered: