(self, for_update: bool)
| 4393 | return FetchedValue(self.for_update) |
| 4394 | |
| 4395 | def _clone(self, for_update: bool) -> Self: |
| 4396 | n = self.__class__.__new__(self.__class__) |
| 4397 | n.__dict__.update(self.__dict__) |
| 4398 | n.__dict__.pop("column", None) |
| 4399 | n.for_update = for_update |
| 4400 | return n |
| 4401 | |
| 4402 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 4403 | column = parent |
no test coverage detected