MCPcopy Index your code
hub / github.com/python/cpython / machine

Function machine

Lib/platform.py:1051–1058  ·  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

1049 return uname().version
1050
1051def machine():
1052
1053 """ Returns the machine type, e.g. 'i386'
1054
1055 An empty string is returned if the value cannot be determined.
1056
1057 """
1058 return uname().machine
1059
1060def processor():
1061

Callers 1

test_winreg.pyFile · 0.90

Calls 1

unameFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…