Ticket #7937: db-api.diff
File db-api.diff, 552 bytes (added by , 16 years ago) |
---|
-
docs/db-api.txt
2218 2218 signals (which are a consequence of calling ``save()``). If you want to save 2219 2219 every item in a ``QuerySet`` and make sure that the ``save()`` method is 2220 2220 called on each instance, you don't need any special function to handle that. 2221 Just loop over them and call ``save()``: 2221 Just loop over them and call ``save()``:: 2222 2222 2223 2223 for item in my_queryset: 2224 2224 item.save()