Remove the pane containing child from the panedwindow All geometry management options for child will be forgotten.
(self, child)
| 4475 | self.tk.call((self._w, 'add', child) + self._options(kw)) |
| 4476 | |
| 4477 | def remove(self, child): |
| 4478 | """Remove the pane containing child from the panedwindow |
| 4479 | |
| 4480 | All geometry management options for child will be forgotten. |
| 4481 | """ |
| 4482 | self.tk.call(self._w, 'forget', child) |
| 4483 | |
| 4484 | forget = remove |
| 4485 |
no test coverage detected