MCPcopy Index your code
hub / github.com/python/cpython / __ge__

Method __ge__

Lib/test/test_binop.py:331–333  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

329 self.log_operation('A.__le__')
330 return NotImplemented
331 def __ge__(self, other):
332 self.log_operation('A.__ge__')
333 return NotImplemented
334
335class B(OperationLogger, metaclass=ABCMeta):
336 def __eq__(self, other):

Callers 2

test_richcompareMethod · 0.45

Calls 1

log_operationMethod · 0.80

Tested by

no test coverage detected