(self)
| 4457 | ) |
| 4458 | |
| 4459 | def _copy(self) -> DefaultClause: |
| 4460 | return DefaultClause( |
| 4461 | arg=self.arg, for_update=self.for_update, _reflected=self.reflected |
| 4462 | ) |
| 4463 | |
| 4464 | def __repr__(self) -> str: |
| 4465 | return "DefaultClause(%r, for_update=%r)" % (self.arg, self.for_update) |
nothing calls this directly
no test coverage detected