(self, instance: object, value: Any)
| 537 | return super().__doc__ |
| 538 | |
| 539 | def __set__(self, instance: object, value: Any) -> None: |
| 540 | self.impl.set( |
| 541 | instance_state(instance), instance_dict(instance), value, None |
| 542 | ) |
| 543 | |
| 544 | def __delete__(self, instance: object) -> None: |
| 545 | self.impl.delete(instance_state(instance), instance_dict(instance)) |
nothing calls this directly
no test coverage detected