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

Function _get_sysconfigdata

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

Source from the content-addressed store, hash-verified

354
355
356def _get_sysconfigdata():
357 import importlib
358
359 name = _get_sysconfigdata_name()
360 path = os.environ.get('_PYTHON_SYSCONFIGDATA_PATH')
361 module = _import_from_directory(path, name) if path else importlib.import_module(name)
362
363 return module.build_time_vars
364
365
366def _installation_is_relocated():

Callers 2

_init_posixFunction · 0.85

Calls 4

_get_sysconfigdata_nameFunction · 0.85
_import_from_directoryFunction · 0.85
getMethod · 0.45
import_moduleMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…