MCPcopy
hub / github.com/astral-sh/python-build-standalone / fetch_strawberry_perl

Function fetch_strawberry_perl

cpython-windows/build.py:1929–1935  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1927
1928
1929def fetch_strawberry_perl() -> pathlib.Path:
1930 strawberryperl_zip = download_entry("strawberryperl", BUILD)
1931 strawberryperl = BUILD / "strawberry-perl"
1932 strawberryperl.mkdir(exist_ok=True)
1933 with zipfile.ZipFile(strawberryperl_zip) as zf:
1934 zf.extractall(strawberryperl)
1935 return strawberryperl
1936
1937
1938def main() -> None:

Callers 1

mainFunction · 0.85

Calls 1

download_entryFunction · 0.90

Tested by

no test coverage detected