From 00efd76861f99a192ac7b1527435d1b1efa6a805 Mon Sep 17 00:00:00 2001 From: Sergey Passichenko Date: Sat, 10 Mar 2018 09:10:09 -0800 Subject: [PATCH] Rename parameter to match the actual name in stdlib (#1959) --- stdlib/3.4/asyncio/events.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3.4/asyncio/events.pyi b/stdlib/3.4/asyncio/events.pyi index 23b030696..c0b447aec 100644 --- a/stdlib/3.4/asyncio/events.pyi +++ b/stdlib/3.4/asyncio/events.pyi @@ -88,7 +88,7 @@ class AbstractEventLoop(metaclass=ABCMeta): @abstractmethod @coroutine def run_in_executor(self, executor: Any, - callback: Callable[..., _T], *args: Any) -> Generator[Any, None, _T]: ... + func: Callable[..., _T], *args: Any) -> Generator[Any, None, _T]: ... @abstractmethod def set_default_executor(self, executor: Any) -> None: ... # Network I/O methods returning Futures.