Files
django-stubs/django-stubs/db/models/query_utils.pyi
Maxim Kurnikov 4f828f7644 add Q object
2018-11-13 18:39:39 +03:00

13 lines
229 B
Python

class RegisterLookupMixin:
pass
class Q(object):
def __init__(self, *args, **kwargs) -> None: ...
def __or__(self, other: Q) -> Q: ...
def __and__(self, other: Q) -> Q: ...
def __invert__(self) -> Q: ...