MCPcopy Create free account
hub / github.com/numpy/numpy / get_paths

Method get_paths

numpy/distutils/system_info.py:1431–1437  ·  view source on GitHub ↗
(self, section, key)

Source from the content-addressed store, hash-verified

1429 notfounderror = AtlasNotFoundError
1430
1431 def get_paths(self, section, key):
1432 pre_dirs = system_info.get_paths(self, section, key)
1433 dirs = []
1434 for d in pre_dirs:
1435 dirs.extend(self.combine_paths(d, ['atlas*', 'ATLAS*',
1436 'sse', '3dnow', 'sse2']) + [d])
1437 return [d for d in dirs if os.path.isdir(d)]
1438
1439 def calc_info(self):
1440 lib_dirs = self.get_lib_dirs()

Callers

nothing calls this directly

Calls 2

combine_pathsMethod · 0.80
get_pathsMethod · 0.45

Tested by

no test coverage detected