binhex: improve bytes handling (#9035)

This commit is contained in:
Nikita Sobolev
2022-10-30 16:36:30 +03:00
committed by GitHub
parent ded1090337
commit a96cb58160
2 changed files with 4 additions and 2 deletions

View File

@@ -234,6 +234,7 @@ else:
WriteableBuffer: TypeAlias = bytearray | memoryview | array.array[Any] | mmap.mmap | ctypes._CData # stable
# Same as _WriteableBuffer, but also includes read-only buffer types (like bytes).
ReadableBuffer: TypeAlias = ReadOnlyBuffer | WriteableBuffer # stable
_BufferWithLen: TypeAlias = ReadableBuffer # not stable # noqa: Y047
ExcInfo: TypeAlias = tuple[type[BaseException], BaseException, TracebackType]
OptExcInfo: TypeAlias = Union[ExcInfo, tuple[None, None, None]]