From 78c91dd7df8384cee620f6e7075891c829d7bc35 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 8 Jul 2006 14:17:45 +0000 Subject: [PATCH] Made two small changes to comments in django.db.models.query git-svn-id: http://code.djangoproject.com/svn/django/trunk@3300 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/db/models/query.py b/django/db/models/query.py index 73af5f54dd..6d3acef703 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -667,7 +667,7 @@ def get_cached_row(klass, row, index_start): def fill_table_cache(opts, select, tables, where, old_prefix, cache_tables_seen): """ Helper function that recursively populates the select, tables and where (in - place) for fill-cache queries. + place) for select_related queries. """ for f in opts.fields: if f.rel and not f.null: @@ -688,6 +688,7 @@ def fill_table_cache(opts, select, tables, where, old_prefix, cache_tables_seen) def parse_lookup(kwarg_items, opts): # Helper function that handles converting API kwargs # (e.g. "name__exact": "tom") to SQL. + # Returns a tuple of (tables, joins, where, params). # 'joins' is a sorted dictionary describing the tables that must be joined # to complete the query. The dictionary is sorted because creation order