0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Merge pull request #666 from mjtamlyn/dup-select-related

Remove dup_select_related method.
This commit is contained in:
Preston Holmes 2013-01-22 16:46:15 -08:00
commit b44a5d1924

View File

@ -755,13 +755,6 @@ class QuerySet(object):
clone._prefetch_related_lookups.extend(lookups)
return clone
def dup_select_related(self, other):
"""
Copies the related selection status from the QuerySet 'other' to the
current QuerySet.
"""
self.query.select_related = other.query.select_related
def annotate(self, *args, **kwargs):
"""
Return a query set in which the returned objects have been annotated