mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 04:09:05 +00:00
17 lines
360 B
Python
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
|