File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 5
5
# This file is part of python-isal which is distributed under the
6
6
# PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2.
7
7
8
- import io
9
8
import typing
10
9
11
10
ISAL_BEST_SPEED : int
@@ -65,5 +64,14 @@ def compressobj(level: int = ISAL_DEFAULT_COMPRESSION,
65
64
zdict = None ) -> Compress : ...
66
65
def decompressobj (wbits : int = MAX_WBITS , zdict = None ) -> Decompress : ...
67
66
68
- class _GzipReader (io .RawIOBase ):
69
- def __init__ (self , fp : typing .BinaryIO , buffersize : int = 32 * 1024 ): ...
67
+ class _GzipReader ():
68
+ def __init__ (self , fp : typing .BinaryIO , buffersize : int = 32 * 1024 ): ...
69
+ def readinto (self , obj ) -> int : ...
70
+ def readable (self ) -> bool : ...
71
+ def seekable (self ) -> bool : ...
72
+ def tell (self ) -> int : ...
73
+ def seek (self , offset : int , whence : int ): ...
74
+ def close (self ): ...
75
+ def readall (self ) -> bytes : ...
76
+ def read (self , __size : int ): ...
77
+ def flush (self ): ...
You can’t perform that action at this time.
0 commit comments