MCPcopy Index your code
hub / github.com/RustPython/RustPython / _ALWAYS_EQ

Class _ALWAYS_EQ

Lib/test/support/__init__.py:2167–2174  ·  view source on GitHub ↗

Object that is equal to anything.

Source from the content-addressed store, hash-verified

2165
2166
2167class _ALWAYS_EQ:
2168 """
2169 Object that is equal to anything.
2170 """
2171 def __eq__(self, other):
2172 return True
2173 def __ne__(self, other):
2174 return False
2175
2176ALWAYS_EQ = _ALWAYS_EQ()
2177

Callers 1

__init__.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected