mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 03:11:16 +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
@@ -37,9 +37,8 @@ class _BaseAddress(_IPAddressBase, SupportsInt):
|
||||
def __hash__(self) -> int: ...
|
||||
def __int__(self) -> int: ...
|
||||
def __sub__(self: _T, other: int) -> _T: ...
|
||||
if sys.version_info >= (3, 4):
|
||||
@property
|
||||
def is_global(self) -> bool: ...
|
||||
@property
|
||||
def is_global(self) -> bool: ...
|
||||
@property
|
||||
def is_link_local(self) -> bool: ...
|
||||
@property
|
||||
|
||||
@@ -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