Beta/venv/lib/python3.12/site-packages/av/buffer.pyi

10 lines
316 B
Python
Raw Permalink Normal View History

2026-02-06 22:23:20 +01:00
# When Python 3.12 becomes our lowest supported version, we could make this
# class inherit `collections.abc.Buffer`.
class Buffer:
buffer_size: int
buffer_ptr: int
def update(self, input: bytes) -> None: ...
def __buffer__(self, flags: int) -> memoryview: ...
def __bytes__(self) -> bytes: ...