MCPcopy Index your code
hub / github.com/RustPython/RustPython / release

Function release

Lib/platform.py:1085–1092  ·  view source on GitHub ↗

Returns the system's release, e.g. '2.2.0' or 'NT' An empty string is returned if the value cannot be determined.

()

Source from the content-addressed store, hash-verified

1083 return uname().node
1084
1085def release():
1086
1087 """ Returns the system's release, e.g. '2.2.0' or 'NT'
1088
1089 An empty string is returned if the value cannot be determined.
1090
1091 """
1092 return uname().release
1093
1094def version():
1095

Callers 4

__index__Method · 0.85
__float__Method · 0.85
__bool__Method · 0.85
com_releaseFunction · 0.85

Calls 1

unameFunction · 0.70

Tested by 3

__index__Method · 0.68
__float__Method · 0.68
__bool__Method · 0.68