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

Function get_sysconfigdata

Platforms/emscripten/wasm_assets.py:101–106  ·  view source on GitHub ↗

Get path to sysconfigdata relative to build root

(args: argparse.Namespace)

Source from the content-addressed store, hash-verified

99
100
101def get_sysconfigdata(args: argparse.Namespace) -> pathlib.Path:
102 """Get path to sysconfigdata relative to build root"""
103 assert isinstance(args.builddir, pathlib.Path)
104 data_name: str = sysconfig._get_sysconfigdata_name() # type: ignore[attr-defined]
105 filename = data_name + ".py"
106 return args.builddir / filename
107
108
109def create_stdlib_zip(

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…