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

Method get

Lib/platform.py:822–824  ·  view source on GitHub ↗
(cls)

Source from the content-addressed store, hash-verified

820class _Processor:
821 @classmethod
822 def get(cls):
823 func = getattr(cls, f'get_{sys.platform}', cls.from_subprocess)
824 return func() or ''
825
826 def get_win32():
827 try:

Callers 6

_comparable_versionFunction · 0.45
_get_machine_win32Function · 0.45
get_win32Method · 0.45
processorMethod · 0.45
_sys_versionFunction · 0.45
platformFunction · 0.45

Calls 1

funcFunction · 0.50

Tested by

no test coverage detected