summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/complex_special_methods.py
blob: 7e54905e495ad154085a8a25eff0166cbf56bcd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# test complex interacting with special methods


class A:
    def __add__(self, x):
        print("__add__")
        return 1


print(A() + 1j)