mocks: add utimeq

This commit is contained in:
Jan Pochyla 2017-06-14 19:33:55 +02:00
parent 197baf66b4
commit f5b5e399e5
1 changed files with 7 additions and 0 deletions

7
mocks/utimeq.pyi Normal file
View File

@ -0,0 +1,7 @@
from typing import *
class utimeq:
def __init__(self, max_queue_size: int) -> None: ...
def push(self, time: int, callback: Any, value: Any) -> None: ...
def pop(self, entry: List[Any]) -> None: ...
def peektime(self) -> int: ...