Give in to the tab police.

This commit is contained in:
Guido van Rossum 1998-03-20 20:45:49 +00:00
parent 6f73c1a2ac
commit c457048744
6 changed files with 286 additions and 276 deletions

View file

@ -25,7 +25,7 @@ def __init__(self, master=None, **options):
if TkVersion < 4.2:
raise TclError, "this module requires Tk 4.2 or newer"
self.master = master
self.master = master
self.options = options
def _fixoptions(self):
@ -37,8 +37,8 @@ def _fixresult(self, widget, result):
def show(self, **options):
# update instance options
for k, v in options.items():
self.options[k] = v
for k, v in options.items():
self.options[k] = v
self._fixoptions()