(self)
| 147 | |
| 148 | @property |
| 149 | def python_installs_dir(self): |
| 150 | directory = join(self.build_dir, 'python-installs') |
| 151 | ensure_dir(directory) |
| 152 | return directory |
| 153 | |
| 154 | def get_python_install_dir(self, arch): |
| 155 | return join(self.python_installs_dir, self.bootstrap.distribution.name, arch) |
nothing calls this directly
no test coverage detected