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]]

View File

@@ -1,3 +1,4 @@
from _typeshed import _BufferWithLen
from typing import IO, Any
from typing_extensions import Literal, TypeAlias
@@ -27,9 +28,9 @@ class openrsrc:
class BinHex:
def __init__(self, name_finfo_dlen_rlen: _FileInfoTuple, ofp: _FileHandleUnion) -> None: ...
def write(self, data: bytes) -> None: ...
def write(self, data: _BufferWithLen) -> None: ...
def close_data(self) -> None: ...
def write_rsrc(self, data: bytes) -> None: ...
def write_rsrc(self, data: _BufferWithLen) -> None: ...
def close(self) -> None: ...
def binhex(inp: str, out: str) -> None: ...