summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-06-27 07:55:59 +0000
committerGuido van Rossum <guido@python.org>1994-06-27 07:55:59 +0000
commit535cf0cbe218c81f3b70bfa2fe7ef45636713ad3 (patch)
tree5168503cdca9fcb8531f5cb5a71b520fabad1dff /Lib
parentaec5dc9f67301aa0ebb975ddf6a29279c374c972 (diff)
downloadcpython-git-535cf0cbe218c81f3b70bfa2fe7ef45636713ad3.tar.gz
Redo these changes:
(Menu.index): return int or None, not string (Widget.__getitem__): use splitlist, not split
Diffstat (limited to 'Lib')
-rw-r--r--Lib/lib-tk/Tkinter.py6
-rwxr-xr-xLib/tkinter/Tkinter.py6
2 files changed, 8 insertions, 4 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index 4d2dd3ab1a..2c3390b090 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -583,7 +583,7 @@ class Widget(Misc, Pack, Place):
apply(self.tk.call, (self._w, 'configure')
+ self._options(cnf))
def __getitem__(self, key):
- v = self.tk.split(self.tk.call(
+ v = self.tk.splitlist(self.tk.call(
self._w, 'configure', '-' + key))
return v[4]
def __setitem__(self, key, value):
@@ -940,7 +940,9 @@ class Menu(Widget):
apply(self.tk.call, (self._w, 'entryconfigure', index)
+ self._options(cnf))
def index(self, index):
- return self.tk.call(self._w, 'index', index)
+ i = self.tk.call(self._w, 'index', index)
+ if i == 'none': return None
+ return self.tk.getint(i)
def invoke(self, index):
return self.tk.call(self._w, 'invoke', index)
def post(self, x, y):
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py
index 4d2dd3ab1a..2c3390b090 100755
--- a/Lib/tkinter/Tkinter.py
+++ b/Lib/tkinter/Tkinter.py
@@ -583,7 +583,7 @@ class Widget(Misc, Pack, Place):
apply(self.tk.call, (self._w, 'configure')
+ self._options(cnf))
def __getitem__(self, key):
- v = self.tk.split(self.tk.call(
+ v = self.tk.splitlist(self.tk.call(
self._w, 'configure', '-' + key))
return v[4]
def __setitem__(self, key, value):
@@ -940,7 +940,9 @@ class Menu(Widget):
apply(self.tk.call, (self._w, 'entryconfigure', index)
+ self._options(cnf))
def index(self, index):
- return self.tk.call(self._w, 'index', index)
+ i = self.tk.call(self._w, 'index', index)
+ if i == 'none': return None
+ return self.tk.getint(i)
def invoke(self, index):
return self.tk.call(self._w, 'invoke', index)
def post(self, x, y):