Ticket #7937: db-api.diff

File db-api.diff, 552 bytes (added by John-Scott Atlakson, 16 years ago)
  • docs/db-api.txt

     
    22182218signals (which are a consequence of calling ``save()``). If you want to save
    22192219every item in a ``QuerySet`` and make sure that the ``save()`` method is
    22202220called on each instance, you don't need any special function to handle that.
    2221 Just loop over them and call ``save()``:
     2221Just loop over them and call ``save()``::
    22222222
    22232223    for item in my_queryset:
    22242224        item.save()
Back to Top