Ticket #3738: 3738.diff

File 3738.diff, 619 bytes (added by Simon G. <dev@…>, 18 years ago)
  • django/db/models/query.py

     
    780780def parse_lookup(kwarg_items, opts):
    781781    # Helper function that handles converting API kwargs
    782782    # (e.g. "name__exact": "tom") to SQL.
    783     # Returns a tuple of (tables, joins, where, params).
     783    # Returns a tuple of (joins, where, params).
    784784
    785785    # 'joins' is a sorted dictionary describing the tables that must be joined
    786786    # to complete the query. The dictionary is sorted because creation order
Back to Top