(self, darwin_version)
| 146 | return str(pathlib.Path(path).resolve()) |
| 147 | |
| 148 | def parse_darwin_version(self, darwin_version): |
| 149 | major, minor, patch = map(int, darwin_version.split('.')) |
| 150 | return major, minor, patch |
| 151 | |
| 152 | def open_folder(self, folder_path): |
| 153 | if os.name == 'posix': |
no outgoing calls
no test coverage detected