Re: [Zope3-Users] schema.List validation does not accept PersistentList

2007-07-19 Thread Leonardo Rochael
Hi Alex, Alek Kowalczyk wrote: > > I have a schema with the List field defined: > > from zope.interface import Interface > from zope.schema import List, TextLine > class IMyObject(Interface): >myList = List(title=u'mylist', value_type=TextLine(title=u'item')) > > Then I implement this usi

[Zope3-Users] schema.List validation does not accept PersistentList

2007-07-19 Thread Alek Kowalczyk
Hi, I have a schema with the List field defined: from zope.interface import Interface from zope.schema import List, TextLine class IMyObject(Interface): myList = List(title=u'mylist', value_type=TextLine(title=u'item')) Then I implement this using field property. Then in constructor I assign