Why does a class method equal itself, but isn't itself?
>>> class Test:
... def test(self): pass
...
>>> t = Test()
>>> t.test == t.test
True
>>> t.test is t.test
False
Why does a class method equal itself, but isn't itself?
>>> class Test:
... def test(self): pass
...
>>> t = Test()
>>> t.test == t.test
True
>>> t.test is t.test
False