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

Method __eq__

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

Source from the content-addressed store, hash-verified

322 return s >= o
323
324 def __eq__(self, other):
325 s, o = self.make_comparable(other)
326 if o is NotImplemented:
327 return NotImplemented
328 return s == o
329
330 def timetuple(self):
331 return time.strptime(self.value, "%Y%m%dT%H:%M:%S")

Callers

nothing calls this directly

Calls 1

make_comparableMethod · 0.95

Tested by

no test coverage detected