13 lines
282 B
Python
13 lines
282 B
Python
|
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
|