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

Class _ANY

Lib/unittest/mock.py:2519–2529  ·  view source on GitHub ↗

A helper object that compares equal to everything.

Source from the content-addressed store, hash-verified

2517
2518
2519class _ANY(object):
2520 "A helper object that compares equal to everything."
2521
2522 def __eq__(self, other):
2523 return True
2524
2525 def __ne__(self, other):
2526 return False
2527
2528 def __repr__(self):
2529 return '<ANY>'
2530
2531ANY = _ANY()
2532

Callers 1

mock.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected