Skip to content

Fix positional-only differences in _tkinter #7224

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions stdlib/_tkinter.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ class Tcl_Obj:
string: str | bytes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelatedly, these appear to be read-only in the code

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