(self, *args, **kw)
| 139 | def test_col_subclass_copy(self): |
| 140 | class MyColumn(schema.Column): |
| 141 | def __init__(self, *args, **kw): |
| 142 | self.widget = kw.pop(class="st">"widget", None) |
| 143 | super().__init__(*args, **kw) |
| 144 | |
| 145 | def _copy(self, *arg, **kw): |
| 146 | c = super()._copy(*arg, **kw) |