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
dict.pop() could be optimized as calling _PyDict_Pop(), but instead it calls the Python-facing method object.
dict.pop()
_PyDict_Pop()
The text was updated successfully, but these errors were encountered:
Fix cython#2047: optimize dict.pop() using _PyDict_Pop()
2282d12
91d56ee
I submitted PR #2049 but there are weird compiler errors there that I can't understand. Help welcome :-)
Sorry, something went wrong.
5c2214f
Merge pull request #2049 from pitrou/dict_pop
5f4e51e
Fix #2047: optimize dict.pop() using _PyDict_Pop()
No branches or pull requests
dict.pop()
could be optimized as calling_PyDict_Pop()
, but instead it calls the Python-facing method object.The text was updated successfully, but these errors were encountered: