erg/crates/erg_compiler/lib/pystd/platform.d.er
2023-08-27 13:58:11 +09:00

32 lines
939 B
Python

.architecture!: () => (Str, Str)
.libc_ver!: (
executable := Str,
lib := Str,
version := Str,
chunksize := Nat
) => (Str, Str)
.mac_ver!: () => (Str, (Str, Str, Str), Str)
.machine!: () => Str
.node!: () => Str
.platform!: (aliased := Bool, terse := Bool) => Str
.processor!: () => Str
.python_build!: () => (Str, Str)
.python_compiler!: () => Str
.python_branch!: () => Str
.python_implementation!: () => Str
.python_revision!: () => Str
.python_version!: () => Str
.python_version_tuple!: () => (Str, Str, Str)
.release!: () => Str
.system!: () => Str
.system_alias!: (system: Str, release: Str, version: Str) => (Str, Str, Str)
.version!: () => Str
.win32_ver!: (
release := Str,
version := Str,
csd := Str,
ptype := Str
) => (Str, Str, Str, Str)
.win32_edition!: () => Str
.win32_is_iot!: () => Bool
.uname!: () => NamedTuple {.system = Str; .node = Str; .release = Str; .version = Str; .machine = Str}