serialization.pyi 154 Bytes
Newer Older
1
2
3
4
5
from typing import Any, BinaryIO, Union

def save(obj, f: Union[str, BinaryIO]) -> None: ...

def load(f: Union[str, BinaryIO], map_location) -> Any: ...