Add _threading_local.local.__delattr__ back to the stub (#8526)

This commit is contained in:
Alex Waygood
2022-08-15 11:56:31 +02:00
committed by GitHub
parent 3623f923a6
commit 5b47f13a99
3 changed files with 14 additions and 0 deletions

View File

@@ -14,3 +14,4 @@ class _localimpl:
class local:
def __getattribute__(self, name: str) -> Any: ...
def __setattr__(self, name: str, value: Any) -> None: ...
def __delattr__(self, name: str) -> None: ...