Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. An empty string is returned if the value cannot be determined.
()
| 1012 | ### Direct interfaces to some of the uname() return values |
| 1013 | |
| 1014 | def system(): |
| 1015 | |
| 1016 | """ Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. |
| 1017 | |
| 1018 | An empty string is returned if the value cannot be determined. |
| 1019 | |
| 1020 | """ |
| 1021 | return uname().system |
| 1022 | |
| 1023 | def node(): |
| 1024 |