Path 1: 791 calls (0.95)

Instance (324) List (246) Tuple (127) Dict (40) Set (22) Const (22) Generator (5) ClassDef (3) FrozenSet (2)

True (791)

1def _supports_iteration_protocol(value: nodes.NodeNG) -> bool:
2    return _supports_protocol_method(value, ITER_METHOD) or _supports_protocol_method(
3        value, GETITEM_METHOD
4    )
            

Path 2: 44 calls (0.05)

Instance (21) Const (18) ClassDef (5)

False (39) True (5)

1def _supports_iteration_protocol(value: nodes.NodeNG) -> bool:
2    return _supports_protocol_method(value, ITER_METHOD) or _supports_protocol_method(
3        value, GETITEM_METHOD
4    )