Remove Python 3.4 support (#3147)

Closes #3123
This commit is contained in:
Sebastian Rittau
2019-07-27 10:58:21 +02:00
committed by GitHub
parent 4697adcb1a
commit 9ccf9356bf
55 changed files with 988 additions and 1266 deletions

View File

@@ -1,4 +1,3 @@
import sys
from typing import (Any, Container, Generic, Iterable, Iterator, Optional,
overload, SupportsInt, Tuple, TypeVar)
@@ -25,9 +24,8 @@ class _IPAddressBase:
def compressed(self) -> str: ...
@property
def exploded(self) -> str: ...
if sys.version_info >= (3, 5):
@property
def reverse_pointer(self) -> str: ...
@property
def reverse_pointer(self) -> str: ...
@property
def version(self) -> int: ...