私はDjango 1.7を実行していますが、次のことTypeError: unsupported operand type(s) for |: 'bool' and 'Q'
をしようとすると次のようになります:
class PersonList(generic.ListView):
template_name = "persons/list.html"
model = Person
queryset = Person.objects.filter(Q(field1__isnull=True | Q(field2__isnull=True)))