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

always use the local name when building definitions #2564

Commits on Sep 25, 2024

  1. always use the local name when building definitions

    Sometimes a class accesses a member by a different name than
       "__name__" of that member: in pypy3 `list.__mul__.__name__ ==
       "__rmul__"`.
    
    As a result, in the example above we weren't able to find
       "list.__mul__", because it was recorded only as "list.__rmul__".
    
    it's a part of the campaign to get rid of non-module roots
    temyurchenko committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    0206036 View commit details
    Browse the repository at this point in the history