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

Function _get_nuspec_data_overrides

PC/layout/support/nuspec.py:64–72  ·  view source on GitHub ↗
(ns)

Source from the content-addressed store, hash-verified

62
63
64def _get_nuspec_data_overrides(ns):
65 arch = ns.arch
66 if ns.include_freethreaded:
67 arch += "t"
68 for k, v in zip(NUSPEC_PLATFORM_DATA["_keys"], NUSPEC_PLATFORM_DATA[arch]):
69 ev = os.getenv("PYTHON_NUSPEC_" + k)
70 if ev:
71 yield k, ev
72 yield k, v
73
74
75def get_nuspec_layout(ns):

Callers 1

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