1 2 3 4 5 6 7 8 9 10 11 12
import typing class PollSource(object): def get_readables(self) -> typing.List[int]: return [] def get_writables(self) -> typing.List[int]: return [] def is_readable(self, fileno: int): pass def is_writable(self, fileno: int): pass