Ticket #13647: no_dup_import_deepcopy.diff

File no_dup_import_deepcopy.diff, 390 bytes (added by Daniel Duan, 14 years ago)

Removes the dup of deepcopy import

  • django/db/models/query.py

    diff --git a/django/db/models/query.py b/django/db/models/query.py
    index d9fbd9b..def5093 100644
    a b  
    22The main QuerySet implementation. This provides the public API for the ORM.
    33"""
    44
    5 from copy import deepcopy
    65from itertools import izip
    76
    87from django.db import connections, router, transaction, IntegrityError
Back to Top