| 225 | |
| 226 | |
| 227 | class _SimpleTest: |
| 228 | def __init__(self, value: t.Any) -> None: |
| 229 | self.value = value |
| 230 | |
| 231 | def __call__(self, test: t.Any) -> bool: |
| 232 | return bool(test == self.value) |
| 233 | |
| 234 | def __repr__(self) -> str: |
| 235 | return "<SimpleTest(%r)" % self.value |
| 236 | |
| 237 | def __str__(self) -> str: |
| 238 | return self.__repr__() |
| 239 | |
| 240 | |
| 241 | def getmembers(object: t.Any, predicate: t.Any = None) -> list[tuple[str, t.Any]]: |
no outgoing calls
no test coverage detected
searching dependent graphs…