(self, instance: object, value: Any)
| 543 | return super().__doc__ |
| 544 | |
| 545 | def __set__(self, instance: object, value: Any) -> None: |
| 546 | self.impl.set( |
| 547 | instance_state(instance), instance_dict(instance), value, None |
| 548 | ) |
| 549 | |
| 550 | def __delete__(self, instance: object) -> None: |
| 551 | self.impl.delete(instance_state(instance), instance_dict(instance)) |
nothing calls this directly
no test coverage detected