diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 998dd0d95ab..2e5b69c52fc 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1024,6 +1024,8 @@ class Grid: def grid_forget(self): self.tk.call('grid', 'forget', self._w) forget = grid_forget + def grid_remove(self): + self.tk.call('grid', 'remove', self._w) def grid_info(self): words = self.tk.splitlist( self.tk.call('grid', 'info', self._w))