From db80f57c6efb23304eb9fb7899b078a85836f850 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 28 Apr 2008 12:09:23 +0000 Subject: [PATCH] ValuesQuerySets (and subclasses) were inadvertently not caching their results. Fixed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7497 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/django/db/models/query.py b/django/db/models/query.py index 3696181a5c..3011b9d9a6 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -497,9 +497,6 @@ class ValuesQuerySet(QuerySet): # QuerySet.clone() will also set up the _fields attribute with the # names of the model fields to select. - def __iter__(self): - return self.iterator() - def iterator(self): self.query.trim_extra_select(self.extra_names) names = self.query.extra_select.keys() + self.field_names