Django

Code

Show
Ignore:
Timestamp:
04/26/08 21:50:16 (7 months ago)
Author:
mtredinnick
Message:

Merged the queryset-refactor branch into trunk.

This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.

Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/modeltests/custom_columns/models.py

    r5876 r7477  
    5656>>> art.authors = [a, a2] 
    5757 
    58 # Although the table and column names on Author have been set to  
    59 # custom values, nothing about using the Author model has changed... 
     58# Although the table and column names on Author have been set to custom values, 
     59# nothing about using the Author model has changed... 
    6060 
    6161# Query the available authors 
     
    7272Traceback (most recent call last): 
    7373    ... 
    74 TypeError: Cannot resolve keyword 'firstname' into field. Choices are: article, id, first_name, last_name 
     74FieldError: Cannot resolve keyword 'firstname' into field. Choices are: article, first_name, id, last_name 
    7575 
    7676>>> a = Author.objects.get(last_name__exact='Smith')