diff --git a/stdlib/3/queue.pyi b/stdlib/3/queue.pyi index 9827bc7d3..4f78821a1 100644 --- a/stdlib/3/queue.pyi +++ b/stdlib/3/queue.pyi @@ -11,6 +11,7 @@ class Full(Exception): ... class Queue(Generic[_T]): def __init__(self, maxsize: int = ...) -> None: ... + def empty(self) -> bool: ... def full(self) -> bool: ... def get(self, block: bool = ..., timeout: Optional[float] = ...) -> _T: ... def get_nowait(self) -> _T: ...