Returns the computer's network name (which may not be fully qualified) An empty string is returned if the value cannot be determined.
()
| 921 | return uname().system |
| 922 | |
| 923 | def node(): |
| 924 | |
| 925 | """ Returns the computer's network name (which may not be fully |
| 926 | qualified) |
| 927 | |
| 928 | An empty string is returned if the value cannot be determined. |
| 929 | |
| 930 | """ |
| 931 | return uname().node |
| 932 | |
| 933 | def release(): |
| 934 |