Fix dunder-method positional-only parameter discrepancies in third-party stubs (#14529)

This commit is contained in:
Brian Schubert
2025-08-08 12:12:44 +02:00
committed by GitHub
parent 2e3203fdff
commit 11907e2825
11 changed files with 113 additions and 99 deletions
+3 -3
View File
@@ -4,8 +4,8 @@ from typing_extensions import Self
class local:
def __init__(self, *args: object, **kwargs: object) -> None: ...
def __copy__(self) -> Self: ...
def __getattribute__(self, name: str) -> Any: ...
def __delattr__(self, name: str) -> None: ...
def __setattr__(self, name: str, value: Any) -> None: ...
def __getattribute__(self, name: str, /) -> Any: ...
def __delattr__(self, name: str, /) -> None: ...
def __setattr__(self, name: str, value: Any, /) -> None: ...
__all__ = ["local"]