(self, section, key)
| 1226 | notfounderror = DJBFFTNotFoundError |
| 1227 | |
| 1228 | def get_paths(self, section, key): |
| 1229 | pre_dirs = system_info.get_paths(self, section, key) |
| 1230 | dirs = [] |
| 1231 | for d in pre_dirs: |
| 1232 | dirs.extend(self.combine_paths(d, ['djbfft']) + [d]) |
| 1233 | return [d for d in dirs if os.path.isdir(d)] |
| 1234 | |
| 1235 | def calc_info(self): |
| 1236 | lib_dirs = self.get_lib_dirs() |
nothing calls this directly
no test coverage detected