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

Method __ge__

Lib/xmlrpc/client.py:318–322  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

316 return s > o
317
318 def __ge__(self, other):
319 s, o = self.make_comparable(other)
320 if o is NotImplemented:
321 return NotImplemented
322 return s >= o
323
324 def __eq__(self, other):
325 s, o = self.make_comparable(other)

Callers

nothing calls this directly

Calls 1

make_comparableMethod · 0.95

Tested by

no test coverage detected