Method: pylint.checkers.utils.supports_membership_test
Calls: 145, Exceptions: 0, Paths: 1Back
Path 1: 145 calls (1.0)
List (31) Dict (28) Const (25) Instance (18) Tuple (13) DictKeys (9) ClassDef (8) Set (5) FrozenSet (3) DictValues (1)
True (126) False (19)
1def supports_membership_test(value: nodes.NodeNG) -> bool:
2 supported = _supports_protocol(value, _supports_membership_test_protocol)
3 return supported or is_iterable(value)