﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
31350	.save() on list of entries will not work	Shrikrishna Singh	Shrikrishna Singh	"I was going through the `Database access optimization`  documentation.

And in the section [`Update in bulk`](https://docs.djangoproject.com/en/3.0/topics/db/optimization/#update-in-bulk), it is mentioned that:

{{{
entries = Entry.objects.bulk_create([
    Entry(headline='This is a test'),
    Entry(headline='This is only a test'),
])
}}}

After the `bulk_create` it possible to do:

{{{
entries[0].headline = 'This is not a test'
entries.save()
entries[1].headline = 'This is no longer a test'
entries.save()
}}}

Which doesn't seem right, as `entries` is list which will not have attribute `save()`. Instead it should be `entries[0].save()` and `entries[1].save()`. 

This is a very small mistake. But I am willing to send a PR if someone verify this issue."	Bug	closed	Documentation	3.0	Normal	fixed			Accepted	1	0	0	0	1	0
