RustPython / RustPython Public
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
dict_keys
, dict_values
, and dict_items
are missing several methods
#2898
Comments
dict_keys
is missing several methodsdict_keys
, dict_values
, and dict_items
are missing several methods
Yup, I don't think a macro should be used to generate the types as is currently done. For their respective iterators, the macro seems like a good idea, for the types, not that much. |
Additionally, though |
is this done? can we list up what's done and left? |
I think sizeof is the last one that needs to be merged. After that it should be done. |
Feature
CPython:
RustPython:
Diff:
'__contains__'
'__and__'
'__rxor__'
'isdisjoint'
'__or__'
'__rand__'
'__ror__'
'__xor__'
'__rsub__'
'__sub__'
'__sizeof__'
The same is for
dict_values
anddict_items
The text was updated successfully, but these errors were encountered: