--- Tkinter.py.orig 2006-05-30 11:39:42.000000000 -0700 +++ Tkinter.py 2006-06-04 23:15:02.015625000 -0700 @@ -1364,7 +1364,7 @@ maxNumer, maxDenom)) aspect = wm_aspect - def wm_attributes(self, *args): + def wm_attributes(self, **kw): """This subcommand returns or sets platform specific attributes The first form returns a list of the platform specific flags and @@ -1382,8 +1382,7 @@ On Unix, there are currently no special attribute values. """ - args = ('wm', 'attributes', self._w) + args - return self.tk.call(args) + return self.tk.call('wm', 'attributes', self._w, *self._options(kw)) attributes=wm_attributes def wm_client(self, name=None):