Skip to content
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

bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() #20018

Merged

Commits on May 9, 2020

  1. bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError()…

    … by calling
    
    _PyDict_GetItem_KnownHash() instead of the more generic PyDict_GetItemWithError(),
    since we already know the hash of interned strings.
    scoder committed May 9, 2020
    Configuration menu
    Copy the full SHA
    7271ad8 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2020

  1. Apply suggestions from code review

    Co-authored-by: Inada Naoki <songofacandy@gmail.com>
    scoder and methane authored May 11, 2020
    Configuration menu
    Copy the full SHA
    c7e07c3 View commit details
    Browse the repository at this point in the history