mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-10 05:22:23 +08:00
Drop Python 3.3 support from asyncio and ipaddress (#2293)
This commit is contained in:
committed by
Jelle Zijlstra
parent
d3865574a9
commit
25ad95de4f
@@ -33,10 +33,9 @@ class Queue(Generic[_T]):
|
||||
@coroutine
|
||||
def get(self) -> Generator[Any, None, _T]: ...
|
||||
def get_nowait(self) -> _T: ...
|
||||
if sys.version_info >= (3, 4):
|
||||
@coroutine
|
||||
def join(self) -> Generator[Any, None, bool]: ...
|
||||
def task_done(self) -> None: ...
|
||||
@coroutine
|
||||
def join(self) -> Generator[Any, None, bool]: ...
|
||||
def task_done(self) -> None: ...
|
||||
|
||||
|
||||
class PriorityQueue(Queue[_T]): ...
|
||||
|
||||
Reference in New Issue
Block a user