(self, parent: SchemaEventTarget, **kw: Any)
| 4402 | """ |
| 4403 | |
| 4404 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 4405 | assert isinstance(parent, (Column, Table)) |
| 4406 | Constraint._set_parent(self, parent) |
| 4407 | ColumnCollectionMixin._set_parent(self, parent) |
| 4408 | |
| 4409 | def __contains__(self, x: Any) -> bool: |
| 4410 | return x in self._columns |
nothing calls this directly
no test coverage detected