On Sat, May 9, 2009 at 7:49 PM, George Song <geo...@damacy.net> wrote: > I think if you want to know definitively if your `delete()` method is > being called or not, your debug statement should go in that method. I > wouldn't be surprised if Django is sending pre and post delete signals > even during bulk deletion.
It's kind of tricky, really, because there's not any guarantee one way or another -- QuerySet.delete() *may* call delete() methods of individual objects, or it may not. IIRC it mostly comes down to how much of the deletion can be done in a bulk SQL DELETE statement, and how much (due to, e.g., relationships involved) requires fetching the individual objects and deleting them one at a time. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---