Changeset 3300
- Timestamp:
- 07/08/06 09:17:45 (2 years ago)
- Files:
-
- django/trunk/django/db/models/query.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/query.py
r3250 r3300 668 668 """ 669 669 Helper function that recursively populates the select, tables and where (in 670 place) for fill-cachequeries.670 place) for select_related queries. 671 671 """ 672 672 for f in opts.fields: … … 689 689 # Helper function that handles converting API kwargs 690 690 # (e.g. "name__exact": "tom") to SQL. 691 # Returns a tuple of (tables, joins, where, params). 691 692 692 693 # 'joins' is a sorted dictionary describing the tables that must be joined
