diff --git a/stdlib/3/queue.pyi b/stdlib/3/queue.pyi index f871eee3d867..ba995e743dee 100644 --- a/stdlib/3/queue.pyi +++ b/stdlib/3/queue.pyi @@ -3,7 +3,7 @@ # NOTE: These are incomplete! from threading import Condition, Lock -from typing import Any, Deque, TypeVar, Generic, Optional +from typing import Any, TypeVar, Generic, Optional import sys _T = TypeVar('_T') @@ -19,6 +19,7 @@ class Queue(Generic[_T]): not_full: Condition # undocumented all_tasks_done: Condition # undocumented unfinished_tasks: int # undocumented + queue: Any # undocumented def __init__(self, maxsize: int = ...) -> None: ... def _init(self, maxsize: int) -> None: ...