Returns the machine type, e.g. 'i386' An empty string is returned if the value cannot be determined.
()
| 949 | return uname().version |
| 950 | |
| 951 | def machine(): |
| 952 | |
| 953 | """ Returns the machine type, e.g. 'i386' |
| 954 | |
| 955 | An empty string is returned if the value cannot be determined. |
| 956 | |
| 957 | """ |
| 958 | return uname().machine |
| 959 | |
| 960 | def processor(): |
| 961 |