summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-16 17:50:07 +0000
committerGuido van Rossum <guido@python.org>1996-05-16 17:50:07 +0000
commita5f875f5046e5d81f66ea201c3fb6efc65346674 (patch)
tree303147e789dc181c64eb8374290ee535661a114a /Lib
parent68784363669529361bf2c6cf4dbd52c70f4600c0 (diff)
downloadcpython-git-a5f875f5046e5d81f66ea201c3fb6efc65346674.tar.gz
Yet another mini fix to pack/grid info.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/lib-tk/Tkinter.py4
-rwxr-xr-xLib/tkinter/Tkinter.py4
2 files changed, 4 insertions, 4 deletions
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