mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
24 lines
755 B
Python
24 lines
755 B
Python
# Source(py2): https://hg.python.org/cpython/file/2.7/Lib/chunk.py
|
|
# Source(py3): https://github.com/python/cpython/blob/master/Lib/chunk.py
|
|
|
|
from typing import IO
|
|
|
|
class Chunk:
|
|
closed: bool
|
|
align: bool
|
|
file: IO[bytes]
|
|
chunkname: bytes
|
|
chunksize: int
|
|
size_read: int
|
|
offset: int
|
|
seekable: bool
|
|
def __init__(self, file: IO[bytes], align: bool = ..., bigendian: bool = ..., inclheader: bool = ...) -> None: ...
|
|
def getname(self) -> bytes: ...
|
|
def getsize(self) -> int: ...
|
|
def close(self) -> None: ...
|
|
def isatty(self) -> bool: ...
|
|
def seek(self, pos: int, whence: int = ...) -> None: ...
|
|
def tell(self) -> int: ...
|
|
def read(self, size: int = ...) -> bytes: ...
|
|
def skip(self) -> None: ...
|