(name, value)
| 305 | exe_cache[exe] = exe_cache[fc_exe] = fc_exe |
| 306 | return fc_exe |
| 307 | def verify_command_form(name, value): |
| 308 | if value is not None and not is_sequence_of_strings(value): |
| 309 | raise ValueError( |
| 310 | "%s value %r is invalid in class %s" % |
| 311 | (name, value, self.__class__.__name__)) |
| 312 | def set_exe(exe_key, f77=None, f90=None): |
| 313 | cmd = self.executables.get(exe_key, None) |
| 314 | if not cmd: |
nothing calls this directly
no test coverage detected