Skip to content

Commit

Permalink
Fix positional-only differences in threading.local (#7227)
Browse files Browse the repository at this point in the history
Last one of these, I think.
  • Loading branch information
AlexWaygood committed Feb 15, 2022
1 parent 4ab5033 commit 1317fa7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdlib/threading.pyi
Expand Up @@ -114,9 +114,9 @@ TIMEOUT_MAX: float
class ThreadError(Exception): ...

class local:
def __getattribute__(self, name: str) -> Any: ...
def __setattr__(self, name: str, value: Any) -> None: ...
def __delattr__(self, name: str) -> None: ...
def __getattribute__(self, __name: str) -> Any: ...
def __setattr__(self, __name: str, __value: Any) -> None: ...
def __delattr__(self, __name: str) -> None: ...

class Thread:
name: str
Expand Down

0 comments on commit 1317fa7

Please sign in to comment.