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

@@ -49,9 +49,8 @@ class LZMADecompressor(object):
def eof(self) -> bool: ...
@property
def unused_data(self) -> bytes: ...
if sys.version_info >= (3, 5):
@property
def needs_input(self) -> bool: ...
@property
def needs_input(self) -> bool: ...
# from _lzma.c
class LZMACompressor(object):