Add missing slow_callback_duration attribute to AbstractEventLoop (#2340)

This commit is contained in:
Linda_pp
2018-07-19 13:57:46 +09:00
committed by Jelle Zijlstra
parent fd6f99ca2c
commit 0f8e0ad661

View File

@@ -39,6 +39,7 @@ class AbstractServer:
def wait_closed(self) -> Generator[Any, None, None]: ...
class AbstractEventLoop(metaclass=ABCMeta):
slow_callback_duration: float = ...
@abstractmethod
def run_forever(self) -> None: ...