[Erp5-dev] Deleting a list of objects in a container
Stefane Fermigier
sf at nuxeo.com
Wed Jul 28 12:00:54 CEST 2004
Guillaume Michon wrote:
> Hi all,
>
>
> The following code does not work as expected :
>
> for o in container.contentValues():
> container._delObject(o.getId())
>
> The reason is that python does not calculate the expression
> "container.contentValues()" only one time, but at each passage through the
> for. So modifying content of container changes the result of the expression.
> Then the behavior is undeterminable.
>
> The secured way to do is to build a list of ids to delete, then delete them :
>
> to_delete = []
> for o in container.contentValues():
> to_delete.append(o.getId())
> container.deleteContent(to_delete)
You mean probably:
to_delete = []
for o in container.contentValues():
to_delete.append(o.getId())
container.deleteContent(to_delete)
But I think this would be simpler:
container.deleteContent(container.contentIds())
S.
--
Stéfane Fermigier, Tel: +33 (0)6 63 04 12 77 (mobile).
Nuxeo Collaborative Portal Server: http://www.nuxeo.com/cps
Gestion de contenu web / portail collaboratif / groupware / open source!
-------------- next part --------------
A non-text attachment was scrubbed...
Name: sf.vcf
Type: text/x-vcard
Size: 275 bytes
Desc: not available
URL: <http://mail.tiolive.com/pipermail/erp5-dev/attachments/20040728/40075540/attachment.vcf>
More information about the Erp5-dev
mailing list