[Python-bugs-list] [Bug #114304] wm_resizable should return a tuple.

noreply@sourceforge.net noreply@sourceforge.net
Tue, 12 Sep 2000 18:48:03 -0700


Bug #114304, was updated on 2000-Sep-12 18:48
Here is a current snapshot of the bug.

Project: Python
Category: Tkinter
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Summary: wm_resizable should return a tuple.

Details: wm_resizable returns two values - a 0/1 for width and 0/1 for height.  Currently, a string is returned with the 
values separated by a blank.  It would be more consistent
if a tuple were returned.

The code to do that follows:

def wm_resizable(self, width=None, height=None):
       return self._getints(
                        self.tk.call('wm', 'resizable',                                 self._w, width, height))


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=114304&group_id=5470