D | functools.py | 89 def _gt_from_lt(self, other, NotImplemented=NotImplemented): argument 92 if op_result is NotImplemented: 96 def _le_from_lt(self, other, NotImplemented=NotImplemented): argument 99 if op_result is NotImplemented: 103 def _ge_from_lt(self, other, NotImplemented=NotImplemented): argument 106 if op_result is NotImplemented: 110 def _ge_from_le(self, other, NotImplemented=NotImplemented): argument 113 if op_result is NotImplemented: 117 def _lt_from_le(self, other, NotImplemented=NotImplemented): argument 120 if op_result is NotImplemented: [all …]
|