Drop Python 3.3 support from asyncio and ipaddress (#2293)

This commit is contained in:
Sebastian Rittau
2018-07-03 05:22:58 +02:00
committed by Jelle Zijlstra
parent d3865574a9
commit 25ad95de4f
2 changed files with 5 additions and 7 deletions

View File

@@ -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

View File

@@ -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]): ...