(self, *arg, **kw)
| 143 | super().__init__(*args, **kw) |
| 144 | |
| 145 | def _copy(self, *arg, **kw): |
| 146 | c = super()._copy(*arg, **kw) |
| 147 | c.widget = self.widget |
| 148 | return c |
| 149 | |
| 150 | c1 = MyColumn("foo", Integer, widget="x") |
| 151 | c2 = c1._copy() |
no outgoing calls
no test coverage detected