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

Class _ALWAYS_EQ

Lib/test/support/__init__.py:2237–2244  ·  view source on GitHub ↗

Object that is equal to anything.

Source from the content-addressed store, hash-verified

2235
2236
2237class _ALWAYS_EQ:
2238 """
2239 Object that is equal to anything.
2240 """
2241 def __eq__(self, other):
2242 return True
2243 def __ne__(self, other):
2244 return False
2245
2246ALWAYS_EQ = _ALWAYS_EQ()
2247

Callers 1

__init__.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…