Home | History | Annotate | Download | only in python2.7

Lines Matching refs:lambda

56         '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)),
57 ('__le__', lambda self, other: self < other or self == other),
58 ('__ge__', lambda self, other: not self < other)],
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
60 ('__lt__', lambda self, other: self <= other and not self == other),
61 ('__gt__', lambda self, other: not self <= other)],
62 '__gt__': [('__lt__', lambda self, other: not (self > other or self == other)),
63 ('__ge__', lambda self, other: self > other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
66 ('__gt__', lambda self, other: self >= other and not self == other),
67 ('__lt__', lambda self, other: not self >= other)]