Method: pylint.checkers.utils._supports_mapping_protocol
Calls: 121, Exceptions: 0, Paths: 2Back
Path 1: 117 calls (0.97)
Dict (115) Instance (1) ClassDef (1)
True (117)
1def _supports_mapping_protocol(value: nodes.NodeNG) -> bool:
2 return _supports_protocol_method(
3 value, GETITEM_METHOD
4 ) and _supports_protocol_method(value, KEYS_METHOD)
Path 2: 4 calls (0.03)
Const (2) Instance (2)
False (4)
1def _supports_mapping_protocol(value: nodes.NodeNG) -> bool:
2 return _supports_protocol_method(
3 value, GETITEM_METHOD
4 ) and _supports_protocol_method(value, KEYS_METHOD)