mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
34 lines
839 B
Python
34 lines
839 B
Python
import builtins
|
|
import types
|
|
from _typeshed import ReadableBuffer, SupportsRead, SupportsWrite
|
|
from typing import Any
|
|
from typing_extensions import TypeAlias
|
|
|
|
version: int
|
|
|
|
_Marshallable: TypeAlias = (
|
|
# handled in w_object() in marshal.c
|
|
None
|
|
| type[StopIteration]
|
|
| builtins.ellipsis
|
|
| bool
|
|
# handled in w_complex_object() in marshal.c
|
|
| int
|
|
| float
|
|
| complex
|
|
| bytes
|
|
| str
|
|
| tuple[_Marshallable, ...]
|
|
| list[Any]
|
|
| dict[Any, Any]
|
|
| set[Any]
|
|
| frozenset[_Marshallable]
|
|
| types.CodeType
|
|
| ReadableBuffer
|
|
)
|
|
|
|
def dump(value: _Marshallable, file: SupportsWrite[bytes], version: int = 4, /) -> None: ...
|
|
def load(file: SupportsRead[bytes], /) -> Any: ...
|
|
def dumps(value: _Marshallable, version: int = 4, /) -> bytes: ...
|
|
def loads(bytes: ReadableBuffer, /) -> Any: ...
|