We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a9a0e commit 42347a1Copy full SHA for 42347a1
1 file changed
stdlib/enum.pyi
@@ -299,6 +299,7 @@ if sys.version_info >= (3, 11):
299
def __or__(self, other: int) -> Self: ...
300
def __and__(self, other: int) -> Self: ...
301
def __xor__(self, other: int) -> Self: ...
302
+ def __invert__(self) -> Self: ...
303
__ror__ = __or__
304
__rand__ = __and__
305
__rxor__ = __xor__
@@ -309,6 +310,7 @@ else:
309
310
311
312
313
314
315
316
0 commit comments