[Zope] Problem w/ lines-->List in edit form

Dieter Maurer dieter@handshake.de
Wed, 9 May 2001 20:45:46 +0200 (CEST)


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