Returns the machine type, e.g. 'i386' An empty string is returned if the value cannot be determined.
()
| 1049 | return uname().version |
| 1050 | |
| 1051 | def 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 | |
| 1060 | def processor(): |
| 1061 |
no test coverage detected
searching dependent graphs…