Implement Record/TupleTypeSpec

This commit is contained in:
Shunsuke Shibayama 2022-10-21 14:42:53 +09:00
parent 9a88266bde
commit b28c6bd118
5 changed files with 83 additions and 4 deletions

View file

@ -0,0 +1,13 @@
.architecture!: () => Str
.machine!: () => Str
.node!: () => Str
.platform!: () => Str
.processor!: () => Str
.python_build!: () => Str
.python_compiler!: () => Str
.python_branch!: () => Str
.python_implementation!: () => Str
.python_revision!: () => Str
.python_version!: () => Str
.python_version_tuple!: () => (Str, Str, Str)
.uname!: () => {.system = Str; .node = Str; .release = Str; .version = Str; .machine = Str}