Remove the pane containing child from the panedwindow All geometry management options for child will be forgotten.
(self, child)
| 4793 | self.tk.call((self._w, 'add', child) + self._options(kw)) |
| 4794 | |
| 4795 | def remove(self, child): |
| 4796 | """Remove the pane containing child from the panedwindow |
| 4797 | |
| 4798 | All geometry management options for child will be forgotten. |
| 4799 | """ |
| 4800 | self.tk.call(self._w, 'forget', child) |
| 4801 | |
| 4802 | forget = remove |
| 4803 |
no test coverage detected