affine-root-system
Results
2
issues of
affine-root-system
``` 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 ```