guslonergan

Results 2 issues of guslonergan

``` hash(NamedTuple(x=list)(x=[])) ```

``` class A(Class): def f(self, other) -> bool: return self is other x = A() print(x is x) # this gives True print(x.f(x)) # this gives False ```