(self, section, key)
| 2663 | notfounderror = BlasSrcNotFoundError |
| 2664 | |
| 2665 | def get_paths(self, section, key): |
| 2666 | pre_dirs = system_info.get_paths(self, section, key) |
| 2667 | dirs = [] |
| 2668 | for d in pre_dirs: |
| 2669 | dirs.extend([d] + self.combine_paths(d, ['blas'])) |
| 2670 | return [d for d in dirs if os.path.isdir(d)] |
| 2671 | |
| 2672 | def calc_info(self): |
| 2673 | src_dirs = self.get_src_dirs() |
nothing calls this directly
no test coverage detected