(type)
| 10 | |
| 11 | |
| 12 | def intel_version_match(type): |
| 13 | # Match against the important stuff in the version string |
| 14 | return simple_version_match(start=r'Intel.*?Fortran.*?(?:%s).*?Version' % (type,)) |
| 15 | |
| 16 | |
| 17 | class BaseIntelFCompiler(FCompiler): |
no test coverage detected