Returns the computer's network name (which may not be fully qualified) An empty string is returned if the value cannot be determined.
()
| 1021 | return uname().system |
| 1022 | |
| 1023 | def node(): |
| 1024 | |
| 1025 | """ Returns the computer's network name (which may not be fully |
| 1026 | qualified) |
| 1027 | |
| 1028 | An empty string is returned if the value cannot be determined. |
| 1029 | |
| 1030 | """ |
| 1031 | return uname().node |
| 1032 | |
| 1033 | def release(): |
| 1034 |
nothing calls this directly
no test coverage detected
searching dependent graphs…