Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289ad8f commit 24037f7Copy full SHA for 24037f7
1 file changed
Lib/lib-tk/Tkinter.py
@@ -774,6 +774,8 @@ def winfo_visualsavailable(self, includeids=0):
774
data = self.tk.split(
775
self.tk.call('winfo', 'visualsavailable', self._w,
776
includeids and 'includeids' or None))
777
+ if type(data) is StringType:
778
+ data = [self.tk.split(data)]
779
return map(self.__winfo_parseitem, data)
780
def __winfo_parseitem(self, t):
781
"""Internal function."""
0 commit comments