Django

Code

Changeset 3300

Show
Ignore:
Timestamp:
07/08/06 09:17:45 (2 years ago)
Author:
adrian
Message:

Made two small changes to comments in django.db.models.query

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/models/query.py

    r3250 r3300  
    668668    """ 
    669669    Helper function that recursively populates the select, tables and where (in 
    670     place) for fill-cache queries. 
     670    place) for select_related queries. 
    671671    """ 
    672672    for f in opts.fields: 
     
    689689    # Helper function that handles converting API kwargs 
    690690    # (e.g. "name__exact": "tom") to SQL. 
     691    # Returns a tuple of (tables, joins, where, params). 
    691692 
    692693    # 'joins' is a sorted dictionary describing the tables that must be joined