What's the philosophy behind integrating qt.QString with the rest of
python. For example, should one be able to use len()? Should I
instead use len (repr (x))?
x = qt.QString ('abc')
x
abc
len (x)
Traceback (innermost last):
File "<stdin>", line 1, in ?
AttributeError: __len__
--pete