erg/crates/erg_compiler/lib/pystd/pickle.d.er
2023-09-10 03:23:42 +09:00

17 lines
360 B
Python

.HIGHEST_PROTOCOL: Nat
.DEFAULT_PROTOCOL: Nat
.dump!: (obj: Obj, file: PathLike, protocol := Nat) => NoneType
.dumps: (obj: Obj, protocol := Nat) -> Bytes
.load!: (
file: PathLike,
fix_imports := Bool,
encoding := Str,
errors := Str,
) => Obj
.loads: (
data: Bytes,
fix_imports := Bool,
encoding := Str,
errors := Str
) -> Obj