Returns the machine type, e.g. 'i386' An empty string is returned if the value cannot be determined.
()
| 1101 | return uname().version |
| 1102 | |
| 1103 | def 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 | |
| 1112 | def processor(): |
| 1113 |