Can't call operator implicity
I would like to give some feedback about ...
From: http://www.checkio.org/mission/solution-for-anything/solve/
HTTP_USER_AGENT:
Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
Does not work
class A(object): def __init__(self): pass def __ge__(self, other): return True v = A() b = v >= 1 print(b)