(self)
| 230 | object.__setattr__(self, "_param_ids_generated", param_ids_generated) |
| 231 | |
| 232 | def _has_param_ids(self) -> bool: |
| 233 | return "ids" in self.kwargs or len(self.args) >= 4 |
| 234 | |
| 235 | def combined_with(self, other: "Mark") -> "Mark": |
| 236 | """Return a new Mark which is a combination of this |