Add Q.__xor__ (#1133)

This commit is contained in:
Adam Johnson
2022-08-28 09:14:03 +01:00
committed by GitHub
parent d0a9793917
commit 11c587867d

View File

@@ -45,6 +45,7 @@ class Q(tree.Node):
# def __init__(self, *args: Any, _connector: Optional[Any] = ..., _negated: bool = ..., **kwargs: Any) -> None: ...
def __or__(self, other: Q) -> Q: ...
def __and__(self, other: Q) -> Q: ...
def __xor__(self, other: Q) -> Q: ...
def __invert__(self) -> Q: ...
def resolve_expression(
self,