From 1317fa7af9ad0b1ad24333c082eda9e431906bdf Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 15 Feb 2022 15:16:20 +0000 Subject: [PATCH] Fix positional-only differences in `threading.local` (#7227) Last one of these, I think. --- stdlib/threading.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/threading.pyi b/stdlib/threading.pyi index 0ed292f4c..8c6232394 100644 --- a/stdlib/threading.pyi +++ b/stdlib/threading.pyi @@ -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