(self, **kw: Any)
| 2732 | "and will be removed in a future release.", |
| 2733 | ) |
| 2734 | def copy(self, **kw: Any) -> Column[Any]: |
| 2735 | return self._copy(**kw) |
| 2736 | |
| 2737 | def _copy(self, **kw: Any) -> Column[Any]: |
| 2738 | """Create a copy of this ``Column``, uninitialized. |
no test coverage detected