Delete all specified items and all their descendants. The root item may not be deleted.
(self, *items)
| 1216 | |
| 1217 | |
| 1218 | def delete(self, *items): |
| 1219 | """Delete all specified items and all their descendants. The root |
| 1220 | item may not be deleted.""" |
| 1221 | self.tk.call(self._w, "delete", items) |
| 1222 | |
| 1223 | |
| 1224 | def detach(self, *items): |