Ticket #14280: 14280_r13817.diff

File 14280_r13817.diff, 390 bytes (added by Carl Meyer, 14 years ago)
  • django/db/models/query.py

    diff --git a/django/db/models/query.py b/django/db/models/query.py
    index 9ecfb74..e16fca1 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