Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion stdlib/3/queue.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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: ...
Expand Down