Andrew Kuchling wrote: > # Group the flat list into triples > L = [] > for i in range(len(t), 3): > L.append( t[i:i+3] ) better make that range(0, len(t), 3), right? > Some other questions: no time right now (final PSL touchups). if nobody else steps in, I'll get back to them later. Cheers /F