Commit db80f57c authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

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
parent ba010ec1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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