(self)
| 4390 | return self._clone(for_update) |
| 4391 | |
| 4392 | def _copy(self) -> FetchedValue: |
| 4393 | return FetchedValue(self.for_update) |
| 4394 | |
| 4395 | def _clone(self, for_update: bool) -> Self: |
| 4396 | n = self.__class__.__new__(self.__class__) |
nothing calls this directly
no test coverage detected