diff options
author | Dima Pasechnik <dima@pasechnik.info> | 2021-09-28 18:47:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 18:47:32 +0100 |
commit | 71dce947a761df4e764b61285167d0b962823662 (patch) | |
tree | 1c32466f39a362682eacdab458f57ecb48fc60cd /numpy/distutils/fcompiler | |
parent | 0131b0aa13bcc027d8733120a6304db52fd8a2b2 (diff) | |
download | numpy-71dce947a761df4e764b61285167d0b962823662.tar.gz |
fix spacing
as requested by @rgommers
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/nag.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py index 580c4e1d3..8086795ec 100644 --- a/numpy/distutils/fcompiler/nag.py +++ b/numpy/distutils/fcompiler/nag.py @@ -37,6 +37,7 @@ class NAGFCompiler(BaseNAGFCompiler): 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"] } + def get_flags_arch(self): version = self.get_version() if version and version < '5.1': @@ -60,6 +61,7 @@ class NAGFORCompiler(BaseNAGFCompiler): 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"] } + def get_flags_debug(self): version = self.get_version() if version and version > '6.1': |