(value)
| 11 | |
| 12 | |
| 13 | def split_command(value): |
| 14 | if not value: |
| 15 | return None |
| 16 | value = value.strip() |
| 17 | if not value: |
| 18 | return None |
| 19 | return shlex.split(value, posix=(os.name != 'nt')) |
| 20 | |
| 21 | |
| 22 | def find_compiler(): |
no test coverage detected
searching dependent graphs…