sean.upton@uniontrib.com writes: > ... filtering empty sequence elements ... As you are in a Python product and not hampered by (sometimes stupid) Zope security restrictions, there probably is nothing simpler than: l= filter(None,l) This removes any false element, empty elements in your case. Dieter