(self, section, key)
| 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() |
nothing calls this directly
no test coverage detected