Changes between Initial Version and Version 3 of Ticket #20024


Ignore:
Timestamp:
Mar 11, 2013, 12:54:49 PM (11 years ago)
Author:
Luke Plant
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20024

    • Property Triage Stage UnreviewedAccepted
    • Property Type UncategorizedBug
  • Ticket #20024 – Description

    initial v3  
    11
    2 For example,
    3 Entry.objects.exclude(foo_ _in=[None, 1])
     2For example:
     3{{{
     4Entry.objects.exclude(foo__in=[None, 1])
     5}}}
    46It is supposed to return all items whose foo field is not None or 1, but it actually returns an empty query set.
    5 (Note there is no space between underlines. The layout looks weird when two underline characters are put together.)
Back to Top