-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Methods, classmethods and staticmethods #233
Labels
Comments
That's interesting. We can possibly add following based on the SO answer you linked, c1.__str__ == c2.__str__ # False
c1.__dict__.__str__ == c2.__dict__.__str__ # True ?? Looking forward to your PR :) |
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 2, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 3, 2020
Jongy
added a commit
to Jongy/wtfpython
that referenced
this issue
Nov 4, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The effects of descriptors on comparison and identity of methods:
with some more examples in this SO answer.
I can post a PR summarizing it.
The text was updated successfully, but these errors were encountered: