diff options
| author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-02-11 22:46:28 +0100 |
|---|---|---|
| committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-02-11 22:46:28 +0100 |
| commit | e1e487acf1d820cbab8a6f97986bf2fb451dfa8e (patch) | |
| tree | b11aaf190594f6fa3eec452ea6ef3e095d1f7f5a /numpy/distutils | |
| parent | 671de61aeaf2b4ec25f058f60f629f412d7df653 (diff) | |
| download | numpy-e1e487acf1d820cbab8a6f97986bf2fb451dfa8e.tar.gz | |
Fix typos found by copdespell
Diffstat (limited to 'numpy/distutils')
| -rw-r--r-- | numpy/distutils/ccompiler_opt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/ccompiler_opt.py b/numpy/distutils/ccompiler_opt.py index da550722c..4bb0dd008 100644 --- a/numpy/distutils/ccompiler_opt.py +++ b/numpy/distutils/ccompiler_opt.py @@ -1167,7 +1167,7 @@ class _CCompiler: continue lower_flags = flags[:-(i+1)] upper_flags = flags[-i:] - filterd = list(filter( + filtered = list(filter( self._cc_normalize_unix_frgx.search, lower_flags )) # gather subflags @@ -1179,7 +1179,7 @@ class _CCompiler: subflags = xsubflags + subflags cur_flag = arch + '+' + '+'.join(subflags) - flags = filterd + [cur_flag] + flags = filtered + [cur_flag] if i > 0: flags += upper_flags break |
