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.
bool.__invert__
1 parent 23d1447 commit 204ec12Copy full SHA for 204ec12
stdlib/builtins.pyi
@@ -954,7 +954,7 @@ class bool(int):
954
@overload
955
def __rxor__(self, value: int, /) -> int: ...
956
def __getnewargs__(self) -> tuple[int]: ...
957
- @deprecated("Will throw an error in Python 3.14. Use `not` for logical negation of bools instead.")
+ @deprecated("Will throw an error in Python 3.16. Use `not` for logical negation of bools instead.")
958
def __invert__(self) -> int: ...
959
960
@final
0 commit comments