(self, **kw: Any)
| 2457 | "and will be removed in a future release.", |
| 2458 | ) |
| 2459 | def copy(self, **kw: Any) -> Column[Any]: |
| 2460 | return self._copy(**kw) |
| 2461 | |
| 2462 | def _copy(self, **kw: Any) -> Column[Any]: |
| 2463 | """Create a copy of this ``Column``, uninitialized. |
no test coverage detected