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

Function _get_sysconfigdata_name

Lib/sysconfig/__init__.py:359–364  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

357
358
359def _get_sysconfigdata_name():
360 multiarch = getattr(sys.implementation, '_multiarch', '')
361 return os.environ.get(
362 '_PYTHON_SYSCONFIGDATA_NAME',
363 f'_sysconfigdata_{sys.abiflags}_{sys.platform}_{multiarch}',
364 )
365
366
367def _get_sysconfigdata():

Callers 3

_get_json_data_nameFunction · 0.90
_generate_posix_varsFunction · 0.90
_get_sysconfigdataFunction · 0.85

Calls 2

getattrFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected