Returns the (true) processor name, e.g. 'amdk6' An empty string is returned if the value cannot be determined. Note that many platforms do not provide this information or simply return the same value as for machine(), e.g. NetBSD does this.
()
| 1058 | return uname().machine |
| 1059 | |
| 1060 | def processor(): |
| 1061 | |
| 1062 | """ Returns the (true) processor name, e.g. 'amdk6' |
| 1063 | |
| 1064 | An empty string is returned if the value cannot be |
| 1065 | determined. Note that many platforms do not provide this |
| 1066 | information or simply return the same value as for machine(), |
| 1067 | e.g. NetBSD does this. |
| 1068 | |
| 1069 | """ |
| 1070 | return uname().processor |
| 1071 | |
| 1072 | ### Various APIs for extracting information from sys.version |
| 1073 |
nothing calls this directly
no test coverage detected
searching dependent graphs…