Ticket #2737: isnull.patch
File isnull.patch, 483 bytes (added by , 18 years ago) |
---|
-
query.py
707 707 joins, where, params = SortedDict(), [], [] 708 708 709 709 for kwarg, value in kwarg_items: 710 if value is None: 711 value = True 712 kwark = kwarg + "__isnull" 710 713 if value is not None: 711 714 path = kwarg.split(LOOKUP_SEPARATOR) 712 715 # Extract the last elements of the kwarg.