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

Function make_build_python

Platforms/Apple/__main__.py:266–272  ·  view source on GitHub ↗

The implementation of the "make-build" command.

(context: argparse.Namespace)

Source from the content-addressed store, hash-verified

264
265
266def make_build_python(context: argparse.Namespace) -> None:
267 """The implementation of the "make-build" command."""
268 with (
269 group("Compiling build Python"),
270 cwd(subdir("build")),
271 ):
272 run(["make", "-j", str(os.cpu_count())])
273
274
275def apple_target(host: str) -> str:

Callers

nothing calls this directly

Calls 6

cwdFunction · 0.85
strFunction · 0.85
cpu_countMethod · 0.80
groupFunction · 0.70
subdirFunction · 0.70
runFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…