Commit 8e40759d authored by Guido van Rossum's avatar Guido van Rossum

Nathan Paul Simons noticed that the grid_remove() method was missing.

(The difference between grid_remove() and grid_forget() is that the
former remembers the options for the slave.)
parent 3ed1be9f
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment