(self, arch, lib)
| 445 | return join(self.libs_dir, arch) |
| 446 | |
| 447 | def has_lib(self, arch, lib): |
| 448 | return exists(join(self.get_libs_dir(arch), lib)) |
| 449 | |
| 450 | def has_package(self, name, arch=None): |
| 451 | # If this is a file path, it'll need special handling: |
no test coverage detected