Remove the pane containing child from the panedwindow All geometry management options for child will be forgotten.
(self, child)
| 4916 | self.tk.call((self._w, 'add', child) + self._options(kw)) |
| 4917 | |
| 4918 | def remove(self, child): |
| 4919 | """Remove the pane containing child from the panedwindow |
| 4920 | |
| 4921 | All geometry management options for child will be forgotten. |
| 4922 | """ |
| 4923 | self.tk.call(self._w, 'forget', child) |
| 4924 | |
| 4925 | forget = remove |
| 4926 |
no test coverage detected