(self, index, heading, accessor)
| 1221 | """The old insert_column implementation API is deprecated.""" |
| 1222 | |
| 1223 | def insert_column(self, index, heading, accessor): |
| 1224 | self._action("insert column", index=index, heading=heading, accessor=accessor) |
| 1225 | |
| 1226 | with patch.object(table._impl.__class__, "insert_column", insert_column): |
| 1227 | with pytest.warns( |