MCPcopy Index your code
hub / github.com/python/cpython / release

Function release

Lib/platform.py:1033–1040  ·  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

1031 return uname().node
1032
1033def release():
1034
1035 """ Returns the system's release, e.g. '2.2.0' or 'NT'
1036
1037 An empty string is returned if the value cannot be determined.
1038
1039 """
1040 return uname().release
1041
1042def version():
1043

Callers 3

__index__Method · 0.85
__float__Method · 0.85
__bool__Method · 0.85

Calls 1

unameFunction · 0.85

Tested by 3

__index__Method · 0.68
__float__Method · 0.68
__bool__Method · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…