File: _compression.pyi

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 559 bytes parent folder | download
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): ...