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-42927: Inline cache for slots #24216

Merged
merged 7 commits into from
Jan 30, 2021
Merged

Commits on Jan 14, 2021

  1. Configuration menu
    Copy the full SHA
    aca2939 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Comment out debug print

    gvanrossum committed Jan 15, 2021
    Configuration menu
    Copy the full SHA
    e334e53 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec0a590 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b725a65 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2021

  1. Fix the buildbot test failure (I hope).

    The problem was that sometimes a hint of -1 could be set, meaning the
    dict lookup failed.  My code mistook that for a slot offset.
    
    The fix is simple, because slot offsets can never be 0, so ~offset
    can never be -1.
    
    I also cleaned up some comments and a variable name.
    gvanrossum committed Jan 28, 2021
    Configuration menu
    Copy the full SHA
    4c2eb69 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17c8a95 View commit details
    Browse the repository at this point in the history
  3. Improve comment

    gvanrossum committed Jan 28, 2021
    Configuration menu
    Copy the full SHA
    86c4b39 View commit details
    Browse the repository at this point in the history