2017-11-16 13:33:48 -05:00
|
|
|
import skip_if
|
|
|
|
skip_if.no_reverse_ops()
|
|
|
|
|
2017-09-10 10:05:31 -04:00
|
|
|
class A:
|
|
|
|
|
|
|
|
def __init__(self, v):
|
|
|
|
self.v = v
|
|
|
|
|
|
|
|
def __add__(self, o):
|
|
|
|
if isinstance(o, A):
|
|
|
|
return A(self.v + o.v)
|
|
|
|
return A(self.v + o)
|
|
|
|
|
|
|
|
def __radd__(self, o):
|
|
|
|
return A(self.v + o)
|
|
|
|
|
|
|
|
def __repr__(self):
|
2021-04-23 15:26:42 -04:00
|
|
|
return "A({})".format(self.v)
|
2017-09-10 10:05:31 -04:00
|
|
|
|
2023-05-12 09:17:20 -04:00
|
|
|
|
2017-09-10 10:05:31 -04:00
|
|
|
print(A(3) + 1)
|
|
|
|
print(2 + A(5))
|
2023-05-12 09:17:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Test user type with strings.
|
|
|
|
class B:
|
|
|
|
def __init__(self, v):
|
|
|
|
self.v = v
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "B({})".format(self.v)
|
|
|
|
|
|
|
|
def __ror__(self, o):
|
|
|
|
return B(o + "|" + self.v)
|
|
|
|
|
|
|
|
def __radd__(self, o):
|
|
|
|
return B(o + "+" + self.v)
|
|
|
|
|
|
|
|
def __rmul__(self, o):
|
|
|
|
return B(o + "*" + self.v)
|
|
|
|
|
|
|
|
def __rtruediv__(self, o):
|
|
|
|
return B(o + "/" + self.v)
|
|
|
|
|
|
|
|
|
|
|
|
print("a" | B("b"))
|
|
|
|
print("a" + B("b"))
|
|
|
|
print("a" * B("b"))
|
|
|
|
print("a" / B("b"))
|
2023-05-12 09:16:37 -04:00
|
|
|
|
|
|
|
x = "a"; x |= B("b"); print(x)
|
|
|
|
x = "a"; x += B("b"); print(x)
|
|
|
|
x = "a"; x *= B("b"); print(x)
|
|
|
|
x = "a"; x /= B("b"); print(x)
|