diff options
author | Georg Brandl <georg@python.org> | 2012-04-04 18:17:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-04-04 18:17:27 (GMT) |
commit | d4dc6dc9e7e1fc1708c243b308a27e2faf59a3ea (patch) | |
tree | 7825eb6bbf3e6b0a57d330ccd13ec80f77922f93 /Lib/tkinter | |
parent | 08b852970e6aae818a7fb398abcf8135fe19ec3a (diff) | |
parent | b6046301ef70ca30f106038cf3799278e770d3ca (diff) | |
download | cpython-d4dc6dc9e7e1fc1708c243b308a27e2faf59a3ea.zip cpython-d4dc6dc9e7e1fc1708c243b308a27e2faf59a3ea.tar.gz cpython-d4dc6dc9e7e1fc1708c243b308a27e2faf59a3ea.tar.bz2 |
merge with 3.2
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/ttk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py index 928e1de..5ae20a8 100644 --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -1253,7 +1253,7 @@ class Treeview(Widget, tkinter.XView, tkinter.YView): def exists(self, item): - """Returns True if the specified item is present in the three, + """Returns True if the specified item is present in the tree, False otherwise.""" return bool(self.tk.call(self._w, "exists", item)) |