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

Function _aix_vrtl

Lib/_aix_support.py:36–39  ·  view source on GitHub ↗
(vrmf)

Source from the content-addressed store, hash-verified

34
35# extract version, release and technology level from a VRMF string
36def _aix_vrtl(vrmf):
37 # type: (str) -> List[int]
38 v, r, tl = vrmf.split(".")[:3]
39 return [int(v[-1]), int(r), int(tl)]
40
41
42def _aix_bos_rte():

Callers 2

aix_platformFunction · 0.85
_aix_bgtFunction · 0.85

Calls 1

splitMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…