(self, index, heading, accessor)
| 1325 | """The old insert_column implementation API is deprecated.""" |
| 1326 | |
| 1327 | def insert_column(self, index, heading, accessor): |
| 1328 | self._action("insert column", index=index, heading=heading, accessor=accessor) |
| 1329 | |
| 1330 | with patch.object(tree._impl.__class__, "insert_column", insert_column): |
| 1331 | with pytest.warns( |