Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. An empty string is returned if the value cannot be determined.
()
| 912 | ### Direct interfaces to some of the uname() return values |
| 913 | |
| 914 | def system(): |
| 915 | |
| 916 | """ Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'. |
| 917 | |
| 918 | An empty string is returned if the value cannot be determined. |
| 919 | |
| 920 | """ |
| 921 | return uname().system |
| 922 | |
| 923 | def node(): |
| 924 |