From: Guido van Rossum Date: Thu, 16 May 1996 17:50:07 +0000 (+0000) Subject: Yet another mini fix to pack/grid info. X-Git-Tag: v1.4b1~187 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5f875f5046e5d81f66ea201c3fb6efc65346674;p=python Yet another mini fix to pack/grid info. --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 823407731c..ae5aca4433 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -668,7 +668,7 @@ class Pack: for i in range(0, len(words), 2): key = words[i][1:] value = words[i+1] - if value[0] == '.': + if value[:1] == '.': value = self._nametowidget(value) dict[key] = value return dict @@ -745,7 +745,7 @@ class Grid: for i in range(0, len(words), 2): key = words[i][1:] value = words[i+1] - if value[0] == '.': + if value[:1] == '.': value = self._nametowidget(value) dict[key] = value return dict diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index 823407731c..ae5aca4433 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -668,7 +668,7 @@ class Pack: for i in range(0, len(words), 2): key = words[i][1:] value = words[i+1] - if value[0] == '.': + if value[:1] == '.': value = self._nametowidget(value) dict[key] = value return dict @@ -745,7 +745,7 @@ class Grid: for i in range(0, len(words), 2): key = words[i][1:] value = words[i+1] - if value[0] == '.': + if value[:1] == '.': value = self._nametowidget(value) dict[key] = value return dict