mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
binhex: improve bytes handling (#9035)
This commit is contained in:
@@ -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]]
|
||||
|
||||
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user