MCPcopy Index your code
hub / github.com/RustPython/RustPython / machine

Function machine

Lib/platform.py:1103–1110  ·  view source on GitHub ↗

Returns the machine type, e.g. 'i386' An empty string is returned if the value cannot be determined.

()

Source from the content-addressed store, hash-verified

1101 return uname().version
1102
1103def machine():
1104
1105 """ Returns the machine type, e.g. 'i386'
1106
1107 An empty string is returned if the value cannot be determined.
1108
1109 """
1110 return uname().machine
1111
1112def processor():
1113

Callers 1

test_winreg.pyFile · 0.90

Calls 1

unameFunction · 0.70

Tested by

no test coverage detected