mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# Stubs for queue
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
from collections import deque
|
|
from typing import Any, TypeVar, Generic, Optional
|
|
import sys
|
|
|
|
_T = TypeVar('_T')
|
|
|
|
class Empty(Exception): ...
|
|
class Full(Exception): ...
|
|
|
|
class Queue(Generic[_T]):
|
|
maxsize: int
|
|
queue: deque # undocumented
|
|
def __init__(self, maxsize: int = ...) -> None: ...
|
|
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: ...
|
|
def _get(self) -> _T: ...
|
|
def put(self, item: _T, block: bool = ..., timeout: Optional[float] = ...) -> None: ...
|
|
def put_nowait(self, item: _T) -> None: ...
|
|
def _put(self, item: _T) -> None: ...
|
|
def join(self) -> None: ...
|
|
def qsize(self) -> int: ...
|
|
def _qsize(self) -> int: ...
|
|
def task_done(self) -> None: ...
|
|
|
|
class PriorityQueue(Queue[_T]): ...
|
|
class LifoQueue(Queue[_T]): ...
|
|
|
|
if sys.version_info >= (3, 7):
|
|
class SimpleQueue(Generic[_T]):
|
|
def __init__(self) -> None: ...
|
|
def empty(self) -> bool: ...
|
|
def get(self, block: bool = ..., timeout: Optional[float] = ...) -> _T: ...
|
|
def get_nowait(self) -> _T: ...
|
|
def put(self, item: _T, block: bool = ..., timeout: Optional[float] = ...) -> None: ...
|
|
def put_nowait(self, item: _T) -> None: ...
|
|
def qsize(self) -> int: ...
|