File size: 325 Bytes
06555b5 |
1 2 3 4 5 6 7 8 9 10 |
# 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: ...
|