(self)
| 243 | self.__unauthorized_dict_operation("keys") |
| 244 | |
| 245 | def items(self) -> NoReturn: |
| 246 | self.__unauthorized_dict_operation("items") |
| 247 | |
| 248 | def values(self) -> NoReturn: |
| 249 | self.__unauthorized_dict_operation("values") |
no test coverage detected