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

Function get_config_h_filename

Lib/sysconfig/__init__.py:462–471  ·  view source on GitHub ↗

Return the path of pyconfig.h.

()

Source from the content-addressed store, hash-verified

460
461
462def get_config_h_filename():
463 """Return the path of pyconfig.h."""
464 if _PYTHON_BUILD:
465 if os.name == "nt":
466 inc_dir = os.path.join(_PROJECT_BASE, 'PC')
467 else:
468 inc_dir = _PROJECT_BASE
469 else:
470 inc_dir = get_path('platinclude')
471 return os.path.join(inc_dir, 'pyconfig.h')
472
473
474def get_scheme_names():

Callers 1

_generate_posix_varsFunction · 0.90

Calls 2

get_pathFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…