(self, parent: SchemaEventTarget, **kw: Any)
| 4782 | """ |
| 4783 | |
| 4784 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 4785 | assert isinstance(parent, (Column, Table)) |
| 4786 | Constraint._set_parent(self, parent) |
| 4787 | ColumnCollectionMixin._set_parent(self, parent) |
| 4788 | |
| 4789 | def __contains__(self, x: Any) -> bool: |
| 4790 | return x in self._columns |
nothing calls this directly
no test coverage detected