Skip to content

Commit 2f0fac0

Browse files
authored
Fix positional-only differences in _tkinter (#7224)
1 parent f496761 commit 2f0fac0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

stdlib/_tkinter.pyi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ class Tcl_Obj:
2020
string: str | bytes
2121
typename: str
2222
__hash__: None # type: ignore[assignment]
23-
def __eq__(self, other): ...
24-
def __ge__(self, other): ...
25-
def __gt__(self, other): ...
26-
def __le__(self, other): ...
27-
def __lt__(self, other): ...
28-
def __ne__(self, other): ...
23+
def __eq__(self, __other): ...
24+
def __ge__(self, __other): ...
25+
def __gt__(self, __other): ...
26+
def __le__(self, __other): ...
27+
def __lt__(self, __other): ...
28+
def __ne__(self, __other): ...
2929

3030
class TclError(Exception): ...
3131

0 commit comments

Comments
 (0)