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

Function dyld_env

Lib/ctypes/macholib/dyld.py:36–42  ·  view source on GitHub ↗
(env, var)

Source from the content-addressed store, hash-verified

34]
35
36def dyld_env(env, var):
37 if env is None:
38 env = os.environ
39 rval = env.get(var)
40 if rval is None:
41 return []
42 return rval.split(':')
43
44def dyld_image_suffix(env=None):
45 if env is None:

Callers 4

dyld_framework_pathFunction · 0.85
dyld_library_pathFunction · 0.85

Calls 2

getMethod · 0.45
splitMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…