David wrote: > i = vw.find( k1=2, k2=1, k3=1) > ###i = vw.find( {'k1':2, 'k2':1, 'k3':1} ) > print 'find() got idx: ', i Perhaps this, to force the field order? i = vw.find( (2,1,1) ) -jcw