/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fractions.py | 546 def _richcmp(self, other, op): member in class:Fraction 574 return a._richcmp(b, operator.lt) 578 return a._richcmp(b, operator.gt) 582 return a._richcmp(b, operator.le) 586 return a._richcmp(b, operator.ge)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fractions.py | 546 def _richcmp(self, other, op): member in class:Fraction 574 return a._richcmp(b, operator.lt) 578 return a._richcmp(b, operator.gt) 582 return a._richcmp(b, operator.le) 586 return a._richcmp(b, operator.ge)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fractions.py | 29 def _richcmp(self, other, op): member in class:DummyFloat 37 def __eq__(self, other): return self._richcmp(other, operator.eq) 38 def __le__(self, other): return self._richcmp(other, operator.le) 39 def __lt__(self, other): return self._richcmp(other, operator.lt) 40 def __ge__(self, other): return self._richcmp(other, operator.ge) 41 def __gt__(self, other): return self._richcmp(other, operator.gt)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fractions.py | 29 def _richcmp(self, other, op): member in class:DummyFloat 37 def __eq__(self, other): return self._richcmp(other, operator.eq) 38 def __le__(self, other): return self._richcmp(other, operator.le) 39 def __lt__(self, other): return self._richcmp(other, operator.lt) 40 def __ge__(self, other): return self._richcmp(other, operator.ge) 41 def __gt__(self, other): return self._richcmp(other, operator.gt)
|