Home
last modified time | relevance | path

Searched refs:curselection (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/idlelib/
Dautocomplete_w.py128 cursel = int(self.listbox.curselection()[0])
318 cursel = int(self.listbox.curselection()[0])
323 cursel = int(self.listbox.curselection()[0])
357 self.listbox.select_clear(0, int(self.listbox.curselection()[0]))
376 cursel = int(self.listbox.curselection()[0])
387 cursel = int(self.listbox.curselection()[0])
414 cursel = int(self.listbox.curselection()[0])
433 self.listbox.select_clear(0, int(self.listbox.curselection()[0]))
Dconfigdialog.py1476 if self.bindingslist.curselection():
2014 newsel = self.extension_list.curselection()
2156 if self.helplist.curselection(): # There currently is a selection.
/third_party/python/Lib/idlelib/idle_test/
Dtest_configdialog.py1104 eq(b.curselection(), ())
1112 eq(b.curselection(), (1, ))
1120 eq(b.curselection(), (2, ))
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_widgets.py893 self.assertEqual(lb.curselection(), (2, 3, 4, 6))
894 self.assertRaises(TypeError, lb.curselection, 0)
/third_party/python/Tools/unittestgui/
Dunittestgui.py413 selection = self.errorListbox.curselection()
/third_party/python/Lib/tkinter/
D__init__.py3202 def curselection(self): member in Listbox