Tix hlist and item_exists

theoryboy at my-deja.com theoryboy at my-deja.com
Thu May 12 12:41:23 EDT 2005


I can't seem to get this function to work. If the item does not exist I
get an exception, rather than a return value of false. Here's an
example:


#!/usr/bin/python

from Tix import *

root = Tk()
listBox = HList(root)
item = "some item"
if not listBox.item_exists(item, 0):
	listBox.add(item, itemtype=TEXT, text=item)


Any ideas?

Peter




More information about the Python-list mailing list