Changes between Initial Version and Version 3 of Ticket #20024
- Timestamp:
- Mar 11, 2013, 12:54:49 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20024
- Property Triage Stage Unreviewed → Accepted
- Property Type Uncategorized → Bug
-
Ticket #20024 – Description
initial v3 1 1 2 For example, 3 Entry.objects.exclude(foo_ _in=[None, 1]) 2 For example: 3 {{{ 4 Entry.objects.exclude(foo__in=[None, 1]) 5 }}} 4 6 It 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.)