Returns a group of filters combined with OR.
(*args)
| 1143 | return Group(*args, **dict(operator=AND)) |
| 1144 | |
| 1145 | def any(*args): |
| 1146 | """ Returns a group of filters combined with OR. |
| 1147 | """ |
| 1148 | return Group(*args, **dict(operator=OR)) |
| 1149 | |
| 1150 | # From a GET-query dict: |
| 1151 | # all(*dict.items()) |
no test coverage detected