mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
Made methodcaller's name argument positional (#4476)
This commit is contained in:
@@ -158,7 +158,7 @@ def attrgetter(*attrs: str) -> Callable[[Any], Tuple[Any, ...]]: ...
|
||||
def itemgetter(item: Any) -> Callable[[Any], Any]: ...
|
||||
@overload
|
||||
def itemgetter(*items: Any) -> Callable[[Any], Tuple[Any, ...]]: ...
|
||||
def methodcaller(name: str, *args: Any, **kwargs: Any) -> Callable[..., Any]: ...
|
||||
def methodcaller(__name: str, *args: Any, **kwargs: Any) -> Callable[..., Any]: ...
|
||||
def iadd(__a: Any, __b: Any) -> Any: ...
|
||||
def __iadd__(a: Any, b: Any) -> Any: ...
|
||||
def iand(__a: Any, __b: Any) -> Any: ...
|
||||
|
||||
Reference in New Issue
Block a user