(self, attributes: Dict[Any, Any], key: Any, value: Any)
| 159 | return self.path[index] # type: ignore |
| 160 | |
| 161 | def set(self, attributes: Dict[Any, Any], key: Any, value: Any) -> None: |
| 162 | log.debug("set '%s' on path '%s' to '%s'", key, self, value) |
| 163 | attributes[(key, self.natural_path)] = value |
| 164 | |
| 165 | def setdefault( |
| 166 | self, attributes: Dict[Any, Any], key: Any, value: Any |