mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-15 00:55:21 +00:00
32 lines
939 B
Python
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}
|