1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# Stubs for _compression (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
import io
BUFFER_SIZE = ... # type: Any
class BaseStream(io.BufferedIOBase): ...
class DecompressReader(io.RawIOBase):
def readable(self): ...
def __init__(self, fp, decomp_factory, trailing_error=..., **decomp_args): ...
def close(self): ...
def seekable(self): ...
def readinto(self, b): ...
def read(self, size=-1): ...
def seek(self, offset, whence=...): ...
def tell(self): ...
|