mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
Stdlib: correct many parameter names (#9815)
This commit is contained in:
@@ -116,8 +116,8 @@ class BaseListProxy(BaseProxy, MutableSequence[_T]):
|
||||
def sort(self, *, key: Callable[[_T], SupportsRichComparison], reverse: bool = ...) -> None: ...
|
||||
|
||||
class ListProxy(BaseListProxy[_T]):
|
||||
def __iadd__(self, __x: Iterable[_T]) -> Self: ... # type: ignore[override]
|
||||
def __imul__(self, __n: SupportsIndex) -> Self: ... # type: ignore[override]
|
||||
def __iadd__(self, __value: Iterable[_T]) -> Self: ... # type: ignore[override]
|
||||
def __imul__(self, __value: SupportsIndex) -> Self: ... # type: ignore[override]
|
||||
|
||||
# Returned by BaseManager.get_server()
|
||||
class Server:
|
||||
|
||||
Reference in New Issue
Block a user