Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. An empty string is returned if the value cannot be determined.
()
| 1064 | ### Direct interfaces to some of the uname() return values |
| 1065 | |
| 1066 | def system(): |
| 1067 | |
| 1068 | """ Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. |
| 1069 | |
| 1070 | An empty string is returned if the value cannot be determined. |
| 1071 | |
| 1072 | """ |
| 1073 | return uname().system |
| 1074 | |
| 1075 | def node(): |
| 1076 |