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

Method __lt__

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

Source from the content-addressed store, hash-verified

298 return s, o
299
300 def __lt__(self, other):
301 s, o = self.make_comparable(other)
302 if o is NotImplemented:
303 return NotImplemented
304 return s < o
305
306 def __le__(self, other):
307 s, o = self.make_comparable(other)

Callers

nothing calls this directly

Calls 1

make_comparableMethod · 0.95

Tested by

no test coverage detected