1
0
mirror of https://github.com/django/django.git synced 2025-04-16 13:24:38 +00:00

magic-removal: Changed QuerySet._clone() to clone where, params and tables

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2161 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-30 02:11:21 +00:00
parent 880c176381
commit f925d89d11

View File

@ -167,6 +167,9 @@ class QuerySet(object):
c._select_related = self._select_related
c._distinct = self._distinct
c._select = self._select
c._where = self._where
c._params = self._params
c._tables = self._tables
c._offset = self._offset
c._limit = self._limit
return c