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

Method __gt__

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

Source from the content-addressed store, hash-verified

310 return s <= o
311
312 def __gt__(self, other):
313 s, o = self.make_comparable(other)
314 if o is NotImplemented:
315 return NotImplemented
316 return s > o
317
318 def __ge__(self, other):
319 s, o = self.make_comparable(other)

Callers

nothing calls this directly

Calls 1

make_comparableMethod · 0.95

Tested by

no test coverage detected