Skip to content

Commit

Permalink
Fix positional-only differences in _tkinter (#7224)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Feb 15, 2022
1 parent f496761 commit 2f0fac0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions stdlib/_tkinter.pyi
Expand Up @@ -20,12 +20,12 @@ class Tcl_Obj:
string: str | bytes
typename: str
__hash__: 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, __other): ...
def __ge__(self, __other): ...
def __gt__(self, __other): ...
def __le__(self, __other): ...
def __lt__(self, __other): ...
def __ne__(self, __other): ...

class TclError(Exception): ...

Expand Down

0 comments on commit 2f0fac0

Please sign in to comment.