(self)
| 44 | return ['r%s' % (r)] |
| 45 | return [] |
| 46 | def get_flags_arch_f90(self): |
| 47 | r = self.get_flags_arch_f77() |
| 48 | if r: |
| 49 | r[0] = '-' + r[0] |
| 50 | return r |
| 51 | |
| 52 | if __name__ == '__main__': |
| 53 | from numpy.distutils import customized_fcompiler |
nothing calls this directly
no test coverage detected