mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Stdlib: correct many parameter names (#9815)
This commit is contained in:
@@ -22,12 +22,12 @@ class Tcl_Obj:
|
||||
@property
|
||||
def typename(self) -> str: ...
|
||||
__hash__: ClassVar[None] # type: ignore[assignment]
|
||||
def __eq__(self, __other): ...
|
||||
def __ge__(self, __other): ...
|
||||
def __gt__(self, __other): ...
|
||||
def __le__(self, __other): ...
|
||||
def __lt__(self, __other): ...
|
||||
def __ne__(self, __other): ...
|
||||
def __eq__(self, __value): ...
|
||||
def __ge__(self, __value): ...
|
||||
def __gt__(self, __value): ...
|
||||
def __le__(self, __value): ...
|
||||
def __lt__(self, __value): ...
|
||||
def __ne__(self, __value): ...
|
||||
|
||||
class TclError(Exception): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user