1 --- Lib/idlelib/WidgetRedirector.py.orig 2008-04-23 23:39:57.000000000 -0700
2 +++ Lib/idlelib/WidgetRedirector.py 2008-04-23 23:46:55.000000000 -0700
7 - return self.tk.call((self.orig, cmd) + args)
8 + #return self.tk.call((self.orig, cmd) + args)
9 + r = self.tk.call((self.orig, cmd) + args)
10 + if isinstance(r, tuple):
11 + # convert to string ourselves so we get a Tcl list
12 + # that can be converted back into a tuple
13 + r = ' '.join(map(str, r))