﻿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
12297	Faulty example in DB query documentation (Making queries)	bertil	nobody	"In ""Making queries"", section ""Caching and QuerySets"";

The second example looks like:

{{{
>>> queryset = Poll.objects.all()
>>> print [p.headline for p in queryset] # Evaluate the query set.
>>> print [p.pub_date for p in queryset] # Re-use the cache from the evaluation.
}}}

The first line should look like:

{{{
>>> queryset = Entry.objects.all()
}}}


"		closed	Documentation	1.1		fixed	typo		Ready for checkin	1	0	0	0	0	0
