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

Function framework_path

Platforms/Apple/__main__.py:437–446  ·  view source on GitHub ↗

The path to a built single-architecture framework product. :param host_triple: The host triple (e.g., arm64-apple-ios-simulator) :param multiarch: The multiarch identifier (e.g., arm64-simulator)

(host_triple: str, multiarch: str)

Source from the content-addressed store, hash-verified

435
436
437def framework_path(host_triple: str, multiarch: str) -> Path:
438 """The path to a built single-architecture framework product.
439
440 :param host_triple: The host triple (e.g., arm64-apple-ios-simulator)
441 :param multiarch: The multiarch identifier (e.g., arm64-simulator)
442 """
443 return (
444 CROSS_BUILD_DIR
445 / f"{host_triple}/Platforms/Apple/iOS/Frameworks/{multiarch}"
446 )
447
448
449def package_version(prefix_path: Path) -> str:

Callers 1

create_xcframeworkFunction · 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…