We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf685c commit c13a9edCopy full SHA for c13a9ed
stubs/gdb/gdb/__init__.pyi
@@ -78,6 +78,12 @@ class Value:
78
def __xor__(self, other: _ValueOrInt) -> Value: ...
79
def __lshift__(self, other: _ValueOrInt) -> Value: ...
80
def __rshift__(self, other: _ValueOrInt) -> Value: ...
81
+ def __eq__(self, other: _ValueOrInt) -> bool: ... # type: ignore[override]
82
+ def __ne__(self, other: _ValueOrInt) -> bool: ... # type: ignore[override]
83
+ def __lt__(self, other: _ValueOrInt) -> bool: ...
84
+ def __le__(self, other: _ValueOrInt) -> bool: ...
85
+ def __gt__(self, other: _ValueOrInt) -> bool: ...
86
+ def __ge__(self, other: _ValueOrInt) -> bool: ...
87
def __getitem__(self, key: int | str | Field) -> Value: ...
88
def __call__(self, *args: _ValueOrNative) -> Value: ...
89
def __init__(self, val: _ValueOrNative) -> None: ...
0 commit comments