1
0
mirror of https://github.com/django/django.git synced 2025-07-05 18:29:11 +00:00

[1.2.X] Fixed #14280 -- Fixed duplicate import of deepcopy. Thanks, Carl Meyer.

Backport from trunk (r13877).

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2010-09-26 23:00:44 +00:00
parent ad3b281c97
commit bb857bf4d4

View File

@ -2,7 +2,6 @@
The main QuerySet implementation. This provides the public API for the ORM. The main QuerySet implementation. This provides the public API for the ORM.
""" """
from copy import deepcopy
from itertools import izip from itertools import izip
from django.db import connections, router, transaction, IntegrityError from django.db import connections, router, transaction, IntegrityError