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

Names of method types are missing the class name #427

Open
braxtonmckee opened this issue Jan 30, 2023 · 0 comments
Open

Names of method types are missing the class name #427

braxtonmckee opened this issue Jan 30, 2023 · 0 comments

Comments

@braxtonmckee
Copy link
Collaborator

If you write

class C(Class):
    def f(self):
        pass

print(C.MemberFunctions['f'])

the resulting type doesn't have 'C' in its name - it has the name of the function, and it knows the module, but it doesn't know that there is a class name. We either need to put 'C' in the module (which seems weird since the module doesn't exist) or make another place in Type objects to put this kind of info.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant